Update V8 to version 4.7.16.
[chromium-blink-merge.git] / ui / events / test / device_data_manager_test_api_impl.cc
blob2ed21af86164eecf778b9734fa3ad12ad1015192
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/events/test/device_data_manager_test_api.h"
7 #include "ui/events/devices/device_data_manager.h"
9 namespace ui {
10 namespace test {
12 DeviceDataManagerTestAPI::DeviceDataManagerTestAPI() {
15 DeviceDataManagerTestAPI::~DeviceDataManagerTestAPI() {
18 void DeviceDataManagerTestAPI::
19 NotifyObserversTouchscreenDeviceConfigurationChanged() {
20 DeviceDataManager::GetInstance()
21 ->NotifyObserversTouchscreenDeviceConfigurationChanged();
24 void DeviceDataManagerTestAPI::
25 NotifyObserversKeyboardDeviceConfigurationChanged() {
26 DeviceDataManager::GetInstance()
27 ->NotifyObserversKeyboardDeviceConfigurationChanged();
30 void DeviceDataManagerTestAPI::
31 NotifyObserversMouseDeviceConfigurationChanged() {
32 DeviceDataManager::GetInstance()
33 ->NotifyObserversMouseDeviceConfigurationChanged();
36 void DeviceDataManagerTestAPI::
37 NotifyObserversTouchpadDeviceConfigurationChanged() {
38 DeviceDataManager::GetInstance()
39 ->NotifyObserversTouchpadDeviceConfigurationChanged();
42 void DeviceDataManagerTestAPI::NotifyObserversDeviceListsComplete() {
43 DeviceDataManager::GetInstance()->NotifyObserversDeviceListsComplete();
46 void DeviceDataManagerTestAPI::OnDeviceListsComplete() {
47 DeviceDataManager::GetInstance()->OnDeviceListsComplete();
50 } // namespace test
51 } // namespace ui