NaCl cleanup: Stop linking the old, glibc-based Non-SFI runtime into nacl_helper
[chromium-blink-merge.git] / ui / events / test / device_data_manager_test_api_stub.cc
blobb7ff75eb6c814efb691384205bb70edcc72ede54
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()
13 : should_delete_instance_(false) {
16 DeviceDataManagerTestAPI::~DeviceDataManagerTestAPI() {
19 bool DeviceDataManagerTestAPI::CreateDeviceDataManagerInstance() {
20 return false;
23 void DeviceDataManagerTestAPI::
24 NotifyObserversTouchscreenDeviceConfigurationChanged() {
25 NOTREACHED();
28 void DeviceDataManagerTestAPI::
29 NotifyObserversKeyboardDeviceConfigurationChanged() {
30 NOTREACHED();
33 void DeviceDataManagerTestAPI::
34 NotifyObserversMouseDeviceConfigurationChanged() {
35 NOTREACHED();
38 void DeviceDataManagerTestAPI::
39 NotifyObserversTouchpadDeviceConfigurationChanged() {
40 NOTREACHED();
43 void DeviceDataManagerTestAPI::NotifyObserversDeviceListsComplete() {
44 NOTREACHED();
47 void DeviceDataManagerTestAPI::OnDeviceListsComplete() {
48 NOTREACHED();
51 } // namespace test
52 } // namespace ui