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 |