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

Unified Diff: ui/events/event.cc

Issue 1989623002: Suppressed MEs for gestures from cancelled PEs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 6 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 | « ui/events/event.h ('k') | ui/events/gesture_detection/gesture_event_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/event.cc
diff --git a/ui/events/event.cc b/ui/events/event.cc
index 690cf47316e9764239a3b13be576188cbede2814..23f03f91bf76438dfcab40b17a31ad20c9582c38 100644
--- a/ui/events/event.cc
+++ b/ui/events/event.cc
@@ -1277,13 +1277,15 @@ GestureEvent::GestureEvent(float x,
float y,
int flags,
base::TimeTicks time_stamp,
- const GestureEventDetails& details)
+ const GestureEventDetails& details,
+ uint32_t unique_touch_event_id)
: LocatedEvent(details.type(),
gfx::PointF(x, y),
gfx::PointF(x, y),
time_stamp,
flags | EF_FROM_TOUCH),
- details_(details) {}
+ details_(details),
+ unique_touch_event_id_(unique_touch_event_id) {}
GestureEvent::~GestureEvent() {
}
« no previous file with comments | « ui/events/event.h ('k') | ui/events/gesture_detection/gesture_event_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698