OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #include "ui/events/test/device_data_manager_test_api.h" |
| 6 |
| 7 namespace ui { |
| 8 namespace test { |
| 9 |
| 10 DeviceDataManagerTestAPI::DeviceDataManagerTestAPI(bool delete_instance) |
| 11 : delete_instance_(delete_instance) { |
| 12 } |
| 13 |
| 14 DeviceDataManagerTestAPI::~DeviceDataManagerTestAPI() { |
| 15 } |
| 16 |
| 17 bool DeviceDataManagerTestAPI::CreateDeviceDataManagerInstance() { |
| 18 return false; |
| 19 } |
| 20 |
| 21 void DeviceDataManagerTestAPI:: |
| 22 NotifyObserversTouchscreenDeviceConfigurationChanged() { |
| 23 NOTREACHED(); |
| 24 } |
| 25 |
| 26 void DeviceDataManagerTestAPI:: |
| 27 NotifyObserversKeyboardDeviceConfigurationChanged() { |
| 28 NOTREACHED(); |
| 29 } |
| 30 |
| 31 void DeviceDataManagerTestAPI:: |
| 32 NotifyObserversMouseDeviceConfigurationChanged() { |
| 33 NOTREACHED(); |
| 34 } |
| 35 |
| 36 void DeviceDataManagerTestAPI:: |
| 37 NotifyObserversTouchpadDeviceConfigurationChanged() { |
| 38 NOTREACHED(); |
| 39 } |
| 40 |
| 41 void DeviceDataManagerTestAPI::NotifyObserversDeviceListsComplete() { |
| 42 NOTREACHED(); |
| 43 } |
| 44 |
| 45 void DeviceDataManagerTestAPI::OnDeviceListsComplete() { |
| 46 NOTREACHED(); |
| 47 } |
| 48 |
| 49 } // namespace test |
| 50 } // namespace ui |
OLD | NEW |