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

Unified Diff: third_party/WebKit/Source/platform/PlatformGestureEvent.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/Source/platform/PlatformGestureEvent.h
diff --git a/third_party/WebKit/Source/platform/PlatformGestureEvent.h b/third_party/WebKit/Source/platform/PlatformGestureEvent.h
index 86ec241bc832c00b2541a01bb2868429e52a5aaf..a470323fbbe8191a9fd47eaeefe82c3919a85b19 100644
--- a/third_party/WebKit/Source/platform/PlatformGestureEvent.h
+++ b/third_party/WebKit/Source/platform/PlatformGestureEvent.h
@@ -208,6 +208,11 @@ public:
}
}
+ uint32_t uniqueTouchEventId() const
+ {
+ return m_uniqueTouchEventId;
+ }
+
protected:
IntPoint m_position;
IntPoint m_globalPosition;
@@ -237,6 +242,8 @@ protected:
float m_scale;
} m_pinchUpdate;
} m_data;
+
+ uint32_t m_uniqueTouchEventId;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698