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 |