base: Change DCHECK_IS_ON to a macro DCHECK_IS_ON().
[chromium-blink-merge.git] / ui / events / devices / device_hotplug_event_observer.h
blob7219c5e382aef2cefe2cc44e0e5eefcb0e55b4bb
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
3 // found in the LICENSE file.
5 #ifndef UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_
6 #define UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_
8 #include <vector>
10 #include "ui/events/devices/events_devices_export.h"
12 namespace ui {
14 struct KeyboardDevice;
15 struct TouchscreenDevice;
17 // Listener for specific input device hotplug events.
18 class EVENTS_DEVICES_EXPORT DeviceHotplugEventObserver {
19 public:
20 virtual ~DeviceHotplugEventObserver() {}
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.
24 virtual void OnTouchscreenDevicesUpdated(
25 const std::vector<TouchscreenDevice>& devices) = 0;
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;
33 } // namespace ui
35 #endif // UI_EVENTS_DEVICES_DEVICE_HOTPLUG_EVENT_OBSERVER_H_