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

Unified Diff: ui/events/platform/x11/x11_event_source.h

Issue 508303002: Move touchscreen device caching to DeviceDataManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: ui/events/platform/x11/x11_event_source.h
diff --git a/ui/events/platform/x11/x11_event_source.h b/ui/events/platform/x11/x11_event_source.h
index 602eda67dd386353969349c019687b767d778bde..598afa8aaf7ae048e4e3173128b6ad835c980047 100644
--- a/ui/events/platform/x11/x11_event_source.h
+++ b/ui/events/platform/x11/x11_event_source.h
@@ -17,6 +17,8 @@ typedef unsigned long XID;
namespace ui {
+class HotplugEventHandlerX11;
+
// A PlatformEventSource implementation for reading events from X11 server and
// dispatching the events to the appropriate dispatcher.
class EVENTS_EXPORT X11EventSource : public PlatformEventSource {
@@ -56,6 +58,8 @@ class EVENTS_EXPORT X11EventSource : public PlatformEventSource {
// available events.
bool continue_stream_;
+ scoped_ptr<HotplugEventHandlerX11> hotplug_event_handler_;
+
DISALLOW_COPY_AND_ASSIGN(X11EventSource);
};

Powered by Google App Engine
This is Rietveld 408576698