Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: ui/events/device_hotplug_event_observer.h

Issue 618283003: Adds special support to the device manager for keyboards devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to master. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/events/device_data_manager.cc ('k') | ui/events/events.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ 5 #ifndef UI_EVENTS_DEVICE_HOTPLUG_EVENT_OBSERVER_H_
6 #define UI_EVENTS_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ 6 #define UI_EVENTS_DEVICE_HOTPLUG_EVENT_OBSERVER_H_
7 7
8 #include <vector>
9
8 #include "ui/events/events_base_export.h" 10 #include "ui/events/events_base_export.h"
9 #include "ui/events/touchscreen_device.h"
10 11
11 namespace ui { 12 namespace ui {
12 13
14 struct KeyboardDevice;
15 struct TouchscreenDevice;
16
13 // Listener for specific input device hotplug events. 17 // Listener for specific input device hotplug events.
14 class EVENTS_BASE_EXPORT DeviceHotplugEventObserver { 18 class EVENTS_BASE_EXPORT DeviceHotplugEventObserver {
15 public: 19 public:
16 virtual ~DeviceHotplugEventObserver() {} 20 virtual ~DeviceHotplugEventObserver() {}
17 21
18 // On a hotplug event this is called with the list of available devices. 22 // 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.
19 virtual void OnTouchscreenDevicesUpdated( 24 virtual void OnTouchscreenDevicesUpdated(
20 const std::vector<TouchscreenDevice>& devices) = 0; 25 const std::vector<TouchscreenDevice>& devices) = 0;
26
27 // 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 virtual void OnKeyboardDevicesUpdated(
30 const std::vector<KeyboardDevice>& devices) = 0;
21 }; 31 };
22 32
23 } // namespace ui 33 } // namespace ui
24 34
25 #endif // UI_EVENTS_DEVICE_HOTPLUG_EVENT_OBSERVER_H_ 35 #endif // UI_EVENTS_DEVICE_HOTPLUG_EVENT_OBSERVER_H_
OLDNEW
« no previous file with comments | « ui/events/device_data_manager.cc ('k') | ui/events/events.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698