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 | 16 |
achuithb
2016/05/04 22:05:04
get rid of this newline
xdai1
2016/05/04 22:25:01
Done.
| |
17 public: | 17 public: |
18 FakeInputServiceLinux(); | 18 FakeInputServiceLinux(); |
19 ~FakeInputServiceLinux() override; | 19 ~FakeInputServiceLinux() override; |
20 | 20 |
21 void AddDeviceForTesting(const InputDeviceInfo& info); | 21 void AddDeviceForTesting(const InputDeviceInfo& info); |
22 void RemoveDeviceForTesting(const std::string& id); | 22 void RemoveDeviceForTesting(const std::string& id); |
23 void ClearDeviceList(); | 23 void ClearDeviceList(); |
24 | 24 |
achuithb
2016/05/04 22:05:03
Could you add a private: here?
xdai1
2016/05/04 22:25:01
Done.
| |
25 // InputServiceLinux override: | |
26 void GetDevices(std::vector<InputDeviceInfo>* devices) override; | |
27 | |
25 DISALLOW_COPY_AND_ASSIGN(FakeInputServiceLinux); | 28 DISALLOW_COPY_AND_ASSIGN(FakeInputServiceLinux); |
achuithb
2016/05/04 22:05:04
This isn't right - it needs to be private
| |
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 |