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 DEVICE_HID_FAKE_INPUT_SERVICE_LINUX_H_ | 5 #ifndef DEVICE_HID_FAKE_INPUT_SERVICE_LINUX_H_ |
6 #define DEVICE_HID_FAKE_INPUT_SERVICE_LINUX_H_ | 6 #define DEVICE_HID_FAKE_INPUT_SERVICE_LINUX_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "device/hid/input_service_linux.h" | 11 #include "device/hid/input_service_linux.h" |
12 | 12 |
13 namespace device { | 13 namespace device { |
14 | 14 |
15 class FakeInputServiceLinux : public InputServiceLinux { | 15 class FakeInputServiceLinux : public InputServiceLinux { |
16 | |
17 public: | 16 public: |
18 FakeInputServiceLinux(); | 17 FakeInputServiceLinux(); |
19 ~FakeInputServiceLinux() override; | 18 ~FakeInputServiceLinux() override; |
20 | 19 |
21 void AddDeviceForTesting(const InputDeviceInfo& info); | 20 void AddDeviceForTesting(const InputDeviceInfo& info); |
22 void RemoveDeviceForTesting(const std::string& id); | 21 void RemoveDeviceForTesting(const std::string& id); |
23 void ClearDeviceList(); | 22 void ClearDeviceList(); |
24 | 23 |
| 24 private: |
| 25 // InputServiceLinux override: |
| 26 void GetDevices(std::vector<InputDeviceInfo>* devices) override; |
| 27 |
25 DISALLOW_COPY_AND_ASSIGN(FakeInputServiceLinux); | 28 DISALLOW_COPY_AND_ASSIGN(FakeInputServiceLinux); |
26 }; | 29 }; |
27 | 30 |
28 } // namespace device | 31 } // namespace device |
29 | 32 |
30 #endif // DEVICE_HID_FAKE_INPUT_SERVICE_LINUX_H_ | 33 #endif // DEVICE_HID_FAKE_INPUT_SERVICE_LINUX_H_ |
OLD | NEW |