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

Unified Diff: third_party/WebKit/Source/platform/PlatformTouchEvent.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/PlatformTouchEvent.h
diff --git a/third_party/WebKit/Source/platform/PlatformTouchEvent.h b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
index 4082877d94cae593cb6656b2af1db41dbb18e255..fd030cd91fac1d8b432e458f506e1c0f9f278959 100644
--- a/third_party/WebKit/Source/platform/PlatformTouchEvent.h
+++ b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
@@ -43,11 +43,18 @@ public:
bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncanceled; }
bool dispatchedDuringFling() const { return m_dispatchedDuringFling; }
+ uint32_t uniqueTouchEventId() const
dtapuska 2016/06/03 15:02:11 Can this fit on one line like the inlines above? (
mustaq 2016/06/03 20:34:45 Done.
+ {
+ return m_uniqueTouchEventId;
+ }
+
protected:
Vector<PlatformTouchPoint> m_touchPoints;
DispatchType m_dispatchType;
bool m_causesScrollingIfUncanceled;
bool m_dispatchedDuringFling;
+
+ uint32_t m_uniqueTouchEventId;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698