| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ | 5 #ifndef UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ |
| 6 #define UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ | 6 #define UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ui/events/devices/events_devices_export.h" | 10 #include "ui/events/devices/events_devices_export.h" |
| 11 | 11 |
| 12 namespace ui { | 12 namespace ui { |
| 13 | 13 |
| 14 struct InputDevice; |
| 14 struct KeyboardDevice; | 15 struct KeyboardDevice; |
| 15 struct TouchscreenDevice; | 16 struct TouchscreenDevice; |
| 16 | 17 |
| 17 // Listener for specific input device hotplug events. | 18 // Listener for specific input device hotplug events. |
| 18 class EVENTS_DEVICES_EXPORT DeviceHotplugEventObserver { | 19 class EVENTS_DEVICES_EXPORT DeviceHotplugEventObserver { |
| 19 public: | 20 public: |
| 20 virtual ~DeviceHotplugEventObserver() {} | 21 virtual ~DeviceHotplugEventObserver() {} |
| 21 | 22 |
| 22 // On a hotplug event this is called with the list of available touchscreen | 23 // On a hotplug event this is called with the list of available touchscreen |
| 23 // devices. The set of touchscreen devices may not necessarily have changed. | 24 // devices. The set of touchscreen devices may not have changed. |
| 24 virtual void OnTouchscreenDevicesUpdated( | 25 virtual void OnTouchscreenDevicesUpdated( |
| 25 const std::vector<TouchscreenDevice>& devices) = 0; | 26 const std::vector<TouchscreenDevice>& devices) = 0; |
| 26 | 27 |
| 27 // On a hotplug event this is called with the list of available keyboard | 28 // On a hotplug event this is called with the list of available keyboard |
| 28 // devices. The set of keyboard devices may not necessarily have changed. | 29 // devices. The set of keyboard devices may not have changed. |
| 29 virtual void OnKeyboardDevicesUpdated( | 30 virtual void OnKeyboardDevicesUpdated( |
| 30 const std::vector<KeyboardDevice>& devices) = 0; | 31 const std::vector<KeyboardDevice>& devices) = 0; |
| 32 |
| 33 // On a hotplug event this is called with the list of available mice. The set |
| 34 // of mice may not have changed. |
| 35 virtual void OnMouseDevicesUpdated( |
| 36 const std::vector<InputDevice>& devices) = 0; |
| 37 |
| 38 // On a hotplug event this is called with the list of available touchpads. The |
| 39 // set of touchpads may not have changed. |
| 40 virtual void OnTouchpadDevicesUpdated( |
| 41 const std::vector<InputDevice>& devices) = 0; |
| 31 }; | 42 }; |
| 32 | 43 |
| 33 } // namespace ui | 44 } // namespace ui |
| 34 | 45 |
| 35 #endif // UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ | 46 #endif // UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ |
| OLD | NEW |