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

Unified Diff: ui/events/gesture_detection/gesture_provider.cc

Issue 1989623002: Suppressed MEs for gestures from cancelled PEs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a comment. Created 4 years, 7 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_provider.cc
diff --git a/ui/events/gesture_detection/gesture_provider.cc b/ui/events/gesture_detection/gesture_provider.cc
index 6bb201482abd70239a5533d0877e02c12cf0f3dd..46ed06a814f2398c57ce62995fda42c0ccd2e5a2 100644
--- a/ui/events/gesture_detection/gesture_provider.cc
+++ b/ui/events/gesture_detection/gesture_provider.cc
@@ -497,7 +497,8 @@ class GestureProvider::GestureListenerImpl : public ScaleGestureListener,
raw_y,
touch_point_count,
bounding_box,
- flags);
+ flags,
+ 0U);
}
GestureEventData CreateGesture(EventType type,
@@ -521,7 +522,8 @@ class GestureProvider::GestureListenerImpl : public ScaleGestureListener,
raw_y,
touch_point_count,
bounding_box,
- flags);
+ flags,
+ 0U);
}
GestureEventData CreateGesture(const GestureEventDetails& details,
@@ -536,7 +538,8 @@ class GestureProvider::GestureListenerImpl : public ScaleGestureListener,
event.GetRawY(),
event.GetPointerCount(),
GetBoundingBox(event, details.type()),
- event.GetFlags());
+ event.GetFlags(),
+ 0U);
}
GestureEventData CreateGesture(EventType type,

Powered by Google App Engine
This is Rietveld 408576698