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

Unified Diff: ui/base/events/event.h

Issue 22865036: Add support for reposting the ET_GESTURE_TAP_DOWN gesture event to the RootWindow and in the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 4 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/base/events/event.h
===================================================================
--- ui/base/events/event.h (revision 218517)
+++ ui/base/events/event.h (working copy)
@@ -702,6 +702,10 @@
// gesture. If there are no touches associated with this gesture, returns -1.
int GetLowestTouchId() const;
+ unsigned int touch_ids_bitfield() const {
+ return touch_ids_bitfield_;
+ }
+
private:
GestureEventDetails details_;
@@ -710,8 +714,6 @@
// This value is stored as a bitfield because the number of touch ids varies,
// but we currently don't need more than 32 touches at a time.
const unsigned int touch_ids_bitfield_;
-
- DISALLOW_COPY_AND_ASSIGN(GestureEvent);
};
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698