chromium/ui/events/devices/device_data_manager_test_api.cc

// Copyright 2019 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/events/devices/device_data_manager_test_api.h"

#include "ui/events/devices/device_data_manager.h"
#include "ui/events/devices/input_device.h"
#include "ui/events/devices/keyboard_device.h"
#include "ui/events/devices/touchpad_device.h"
#include "ui/events/devices/touchscreen_device.h"

namespace ui {

DeviceDataManagerTestApi::DeviceDataManagerTestApi() = default;

DeviceDataManagerTestApi::~DeviceDataManagerTestApi() = default;

void DeviceDataManagerTestApi::NotifyObserversDeviceListsComplete() {}

void DeviceDataManagerTestApi::
    NotifyObserversKeyboardDeviceConfigurationChanged() {}

void DeviceDataManagerTestApi::
    NotifyObserversMouseDeviceConfigurationChanged() {}

void DeviceDataManagerTestApi::
    NotifyObserversPointingStickDeviceConfigurationChanged() {}

void DeviceDataManagerTestApi::NotifyObserversStylusStateChanged(
    StylusState stylus_state) {}

void DeviceDataManagerTestApi::
    NotifyObserversTouchscreenDeviceConfigurationChanged() {}

void DeviceDataManagerTestApi::
    NotifyObserversTouchpadDeviceConfigurationChanged() {}

void DeviceDataManagerTestApi::OnDeviceListsComplete() {}

void DeviceDataManagerTestApi::SetKeyboardDevices(
    const std::vector<KeyboardDevice>& devices) {}

void DeviceDataManagerTestApi::SetGraphicsTabletDevices(
    const std::vector<InputDevice>& devices) {}

void DeviceDataManagerTestApi::SetMouseDevices(
    const std::vector<InputDevice>& devices) {}

void DeviceDataManagerTestApi::SetPointingStickDevices(
    const std::vector<InputDevice>& devices) {}

void DeviceDataManagerTestApi::SetTouchscreenDevices(
    const std::vector<TouchscreenDevice>& devices,
    bool are_touchscreen_target_displays_valid) {}

void DeviceDataManagerTestApi::SetTouchpadDevices(
    const std::vector<TouchpadDevice>& devices) {}

void DeviceDataManagerTestApi::SetUncategorizedDevices(
    const std::vector<InputDevice>& devices) {}

}  // namespace ui