| Index: third_party/WebKit/Source/core/input/EventHandler.h
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandler.h b/third_party/WebKit/Source/core/input/EventHandler.h
|
| index e5cf6c4618a6458ae61b3d71348ae7fd25861b00..b4fe31bcb2dc41d893601576fae4980739f18ee2 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.h
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.h
|
| @@ -86,7 +86,9 @@ class Widget;
|
|
|
| enum class DragInitiator;
|
|
|
| -class CORE_EXPORT EventHandler final : public GarbageCollectedFinalized<EventHandler> {
|
| +class CORE_EXPORT EventHandler final : public GarbageCollectedFinalized<EventHandler>
|
| + , public UserGestureUsedCallback {
|
| +
|
| WTF_MAKE_NONCOPYABLE(EventHandler);
|
| public:
|
| explicit EventHandler(LocalFrame*);
|
| @@ -204,6 +206,7 @@ public:
|
| void capsLockStateMayHaveChanged(); // Only called by FrameSelection
|
|
|
| WebInputEventResult handleTouchEvent(const PlatformTouchEvent&);
|
| + void userGestureUsed() override;
|
|
|
| bool useHandCursor(Node*, bool isOverLink);
|
|
|
|
|