| 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 d2063318b4846ffe2588c07e8ba4e66b5bf0ecc8..a0b97a2a31a962bc826f9eae5d142596bfd11b1a 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
|
|
|