chromium/ui/base/pointer/mock_touch_ui_controller.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/base/pointer/mock_touch_ui_controller.h"

namespace ui {

MockTouchUiController::MockTouchUiController(
    ::ui::TouchUiController::TouchUiState touch_ui_state)
    :{}

MockTouchUiController::~MockTouchUiController() = default;

#if BUILDFLAG(USE_BLINK)
void MockTouchUiController::SetMockConnectedPointerDevices(
    const std::vector<PointerDevice>& devices) {}

int MockTouchUiController::MaxTouchPoints() const {}

std::optional<PointerDevice> MockTouchUiController::GetPointerDevice(
    PointerDevice::Key key) const {}

std::vector<PointerDevice> MockTouchUiController::GetPointerDevices() const {}
#endif  // BUILDFLAG(USE_BLINK)

}  // namespace ui