summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/PlatformTouchEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/PlatformTouchEvent.h')
-rw-r--r--Source/WebCore/platform/PlatformTouchEvent.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/WebCore/platform/PlatformTouchEvent.h b/Source/WebCore/platform/PlatformTouchEvent.h
index f7524b4..d1de018 100644
--- a/Source/WebCore/platform/PlatformTouchEvent.h
+++ b/Source/WebCore/platform/PlatformTouchEvent.h
@@ -68,6 +68,8 @@ public:
PlatformTouchEvent(QTouchEvent*);
#elif PLATFORM(ANDROID)
PlatformTouchEvent(const Vector<int>&, const Vector<IntPoint>&, TouchEventType, const Vector<PlatformTouchPoint::State>&, int metaState);
+ bool hitTouchHandler() { return m_hitTouchHandler; }
+ void setHitTouchHandler() { m_hitTouchHandler = true; }
#elif PLATFORM(BREWMP)
PlatformTouchEvent(AEEEvent, uint16 wParam, uint32 dwParam);
#elif PLATFORM(EFL)
@@ -93,6 +95,9 @@ protected:
bool m_shiftKey;
bool m_metaKey;
double m_timestamp;
+#if PLATFORM(ANDROID)
+ bool m_hitTouchHandler;
+#endif
};
}