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

Unified Diff: ui/events/gesture_detection/gesture_event_data.h

Issue 212663010: Store the id of a contributing motion event in GestureEventData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update test. Created 6 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
Index: ui/events/gesture_detection/gesture_event_data.h
diff --git a/ui/events/gesture_detection/gesture_event_data.h b/ui/events/gesture_detection/gesture_event_data.h
index 280103a921b4c9c5cc16e30384b7a1bb1ac9eb99..f7f57a8b7defb37921059aaa58d3caae82c43ad3 100644
--- a/ui/events/gesture_detection/gesture_event_data.h
+++ b/ui/events/gesture_detection/gesture_event_data.h
@@ -16,17 +16,20 @@ class GestureEventDataPacket;
struct GESTURE_DETECTION_EXPORT GestureEventData {
GestureEventData(EventType type,
+ int motion_event_id,
base::TimeTicks time,
float x,
float y,
const GestureEventDetails& details);
GestureEventData(EventType type,
+ int motion_event_id,
base::TimeTicks time,
float x,
float y);
EventType type;
+ int motion_event_id;
base::TimeTicks time;
float x;
float y;
« no previous file with comments | « content/browser/renderer_host/input/motion_event_web.cc ('k') | ui/events/gesture_detection/gesture_event_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698