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

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: 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
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..48fabfd5fc21ded176e6f79f7e553180f3b1b1f0 100644
--- a/third_party/WebKit/Source/platform/PlatformTouchEvent.h
+++ b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
@@ -43,11 +43,15 @@ public:
bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncanceled; }
bool dispatchedDuringFling() const { return m_dispatchedDuringFling; }
+ uint32_t uniqueTouchEventId() const { return m_uniqueTouchEventId; }
+
protected:
Vector<PlatformTouchPoint> m_touchPoints;
DispatchType m_dispatchType;
bool m_causesScrollingIfUncanceled;
bool m_dispatchedDuringFling;
+
+ uint32_t m_uniqueTouchEventId;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/PlatformGestureEvent.h ('k') | third_party/WebKit/Source/web/WebInputEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698