| 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 a95cedbfdd2a0eb2ad8ffaf2d8bb7675dba19800..416167289724e4320c6ae6d198174be5301147e8 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.h
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.h
|
| @@ -86,7 +86,8 @@ class Widget;
|
|
|
| enum class DragInitiator;
|
|
|
| -class CORE_EXPORT EventHandler final : public NoBaseWillBeGarbageCollectedFinalized<EventHandler> {
|
| +class CORE_EXPORT EventHandler final : public NoBaseWillBeGarbageCollectedFinalized<EventHandler>
|
| + , public UserGestureUsedCallback {
|
| WTF_MAKE_NONCOPYABLE(EventHandler);
|
| USING_FAST_MALLOC_WILL_BE_REMOVED(EventHandler);
|
| public:
|
| @@ -205,6 +206,7 @@ public:
|
| void capsLockStateMayHaveChanged(); // Only called by FrameSelection
|
|
|
| WebInputEventResult handleTouchEvent(const PlatformTouchEvent&);
|
| + void userGestureUsed();
|
|
|
| bool useHandCursor(Node*, bool isOverLink);
|
|
|
|
|