| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_EVENTS_TEST_DEVICE_DATA_MANAGER_TEST_API_H_ | 5 #ifndef UI_EVENTS_TEST_DEVICE_DATA_MANAGER_TEST_API_H_ |
| 6 #define UI_EVENTS_TEST_DEVICE_DATA_MANAGER_TEST_API_H_ | 6 #define UI_EVENTS_TEST_DEVICE_DATA_MANAGER_TEST_API_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | |
| 10 #include "ui/events/devices/events_devices_export.h" | 11 #include "ui/events/devices/events_devices_export.h" |
| 11 | 12 |
| 12 namespace ui { | 13 namespace ui { |
| 13 | 14 |
| 14 class DeviceDataManager; | 15 class DeviceDataManager; |
| 15 | 16 |
| 16 namespace test { | 17 namespace test { |
| 17 | 18 |
| 18 // Test API class to access internals of the DeviceDataManager class. | 19 // Test API class to access internals of the DeviceDataManager class. |
| 19 class DeviceDataManagerTestAPI { | 20 class DeviceDataManagerTestAPI { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 void OnDeviceListsComplete(); | 33 void OnDeviceListsComplete(); |
| 33 | 34 |
| 34 private: | 35 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(DeviceDataManagerTestAPI); | 36 DISALLOW_COPY_AND_ASSIGN(DeviceDataManagerTestAPI); |
| 36 }; | 37 }; |
| 37 | 38 |
| 38 } // namespace test | 39 } // namespace test |
| 39 } // namespace ui | 40 } // namespace ui |
| 40 | 41 |
| 41 #endif // UI_EVENTS_TEST_DEVICE_DATA_MANAGER_TEST_API_H_ | 42 #endif // UI_EVENTS_TEST_DEVICE_DATA_MANAGER_TEST_API_H_ |
| OLD | NEW |