summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/page/EventHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/page/EventHandler.h')
-rw-r--r--Source/WebCore/page/EventHandler.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/WebCore/page/EventHandler.h b/Source/WebCore/page/EventHandler.h
index e20e43c..70d6194 100644
--- a/Source/WebCore/page/EventHandler.h
+++ b/Source/WebCore/page/EventHandler.h
@@ -34,6 +34,7 @@
#include "TextEventInputType.h"
#include "Timer.h"
#include <wtf/Forward.h>
+#include <wtf/OwnPtr.h>
#include <wtf/RefPtr.h>
#if PLATFORM(MAC) && !defined(__OBJC__)
@@ -76,6 +77,10 @@ class Widget;
class PlatformGestureEvent;
#endif
+#if ENABLE(GESTURE_RECOGNIZER)
+class PlatformGestureRecognizer;
+#endif
+
#if ENABLE(DRAG_SUPPORT)
extern const int LinkDragHysteresis;
extern const int ImageDragHysteresis;
@@ -456,6 +461,9 @@ private:
RefPtr<Node> m_capturingTouchEventsNode;
#endif
#endif
+#if ENABLE(GESTURE_RECOGNIZER)
+ OwnPtr<PlatformGestureRecognizer> m_gestureRecognizer;
+#endif
};
} // namespace WebCore