| 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 f177b85fc4e8bddb70f68bd93b72cce20f97eed8..c7de413d680d67e385efa449d2c2418367c8cf4f 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 UserGestureUtilizedCallback {
|
| +
|
| WTF_MAKE_NONCOPYABLE(EventHandler);
|
| public:
|
| explicit EventHandler(LocalFrame*);
|
| @@ -207,6 +209,7 @@ public:
|
| void capsLockStateMayHaveChanged(); // Only called by FrameSelection
|
|
|
| WebInputEventResult handleTouchEvent(const PlatformTouchEvent&);
|
| + void userGestureUtilized() override;
|
|
|
| bool useHandCursor(Node*, bool isOverLink);
|
|
|
|
|