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

Unified Diff: third_party/WebKit/public/web/WebInputEvent.h

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: third_party/WebKit/public/web/WebInputEvent.h
diff --git a/third_party/WebKit/public/web/WebInputEvent.h b/third_party/WebKit/public/web/WebInputEvent.h
index cf84b29b5caa42c2fd9c7028149b1bfa14526315..a9287026a591a0574852528a78984a79eb264384 100644
--- a/third_party/WebKit/public/web/WebInputEvent.h
+++ b/third_party/WebKit/public/web/WebInputEvent.h
@@ -489,6 +489,12 @@ public:
int globalX;
int globalY;
WebGestureDevice sourceDevice;
+
+ // If the WebGestureEvent has sourceDevice=WebGestureDeviceTouchscreen, this
+ // field contains the unique identifier for the touch event that triggered
+ // the gesture. Otherwise, it contains 0.
+ uint32_t uniqueTouchEventId;
+
// This field exists to allow BrowserPlugin to mark GestureScroll events as
// 'resent' to handle the case where an event is not consumed when first
// encountered; it should be handled differently by the plugin when it is

Powered by Google App Engine
This is Rietveld 408576698