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

Unified Diff: base/message_pump_glib_x.h

Issue 6736029: Tweak XInput2 event subscription (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove unnecessary braces Created 9 years, 9 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
« no previous file with comments | « no previous file | base/message_pump_glib_x.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_pump_glib_x.h
diff --git a/base/message_pump_glib_x.h b/base/message_pump_glib_x.h
index 2959ef0ceebb435960796e5054eda94967eb768c..e8e92d6085f5f80aaaa306b20c748424477314c9 100644
--- a/base/message_pump_glib_x.h
+++ b/base/message_pump_glib_x.h
@@ -48,12 +48,10 @@ class MessagePumpGlibX : public MessagePumpForUI {
// The opcode used for checking events.
int xiopcode_;
- // The list of master pointer devices. We maintain this list so that it is not
- // necessary to query X for the list of devices for each GdkWindow created.
- std::set<int> masters_;
-
- // The list of floating pointer devices.
- std::set<int> floats_;
+ // The list of pointer devices we care about. We maintain this list so that
+ // it is not necessary to query X for the list of devices for each
+ // GdkWindow created.
+ std::set<int> pointer_devices_;
#endif
// The event source for GDK events.
« no previous file with comments | « no previous file | base/message_pump_glib_x.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698