Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ui / events / test / device_data_manager_test_api_stub.cc
blob36a4383b6feec6ae0846ff3eacebfdff0042a68e
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 "base/logging.h"
9 namespace ui {
10 namespace test {
12 DeviceDataManagerTestAPI::DeviceDataManagerTestAPI() {
15 DeviceDataManagerTestAPI::~DeviceDataManagerTestAPI() {
18 void DeviceDataManagerTestAPI::
19 NotifyObserversTouchscreenDeviceConfigurationChanged() {
20 NOTREACHED();
23 void DeviceDataManagerTestAPI::
24 NotifyObserversKeyboardDeviceConfigurationChanged() {
25 NOTREACHED();
28 void DeviceDataManagerTestAPI::
29 NotifyObserversMouseDeviceConfigurationChanged() {
30 NOTREACHED();
33 void DeviceDataManagerTestAPI::
34 NotifyObserversTouchpadDeviceConfigurationChanged() {
35 NOTREACHED();
38 void DeviceDataManagerTestAPI::NotifyObserversDeviceListsComplete() {
39 NOTREACHED();
42 void DeviceDataManagerTestAPI::OnDeviceListsComplete() {
43 NOTREACHED();
46 } // namespace test
47 } // namespace ui