Index: sky/engine/core/rendering/HitTestRequest.h |
diff --git a/sky/engine/core/rendering/HitTestRequest.h b/sky/engine/core/rendering/HitTestRequest.h |
index 720c502fea8e30261311f3b907e5fb840dd25ed8..ea820575f811e05bcae16c8ccd5e250cbadb1610 100644 |
--- a/sky/engine/core/rendering/HitTestRequest.h |
+++ b/sky/engine/core/rendering/HitTestRequest.h |
@@ -34,7 +34,6 @@ public: |
Release = 1 << 4, |
IgnoreClipping = 1 << 5, |
SVGClipContent = 1 << 6, |
- TouchEvent = 1 << 7, |
IgnorePointerEventsNone = 1 << 8, |
}; |
@@ -51,12 +50,8 @@ public: |
bool release() const { return m_requestType & Release; } |
bool ignoreClipping() const { return m_requestType & IgnoreClipping; } |
bool svgClipContent() const { return m_requestType & SVGClipContent; } |
- bool touchEvent() const { return m_requestType & TouchEvent; } |
bool ignorePointerEventsNone() const { return m_requestType & IgnorePointerEventsNone; } |
- // Convenience functions |
- bool touchMove() const { return move() && touchEvent(); } |
- |
HitTestRequestType type() const { return m_requestType; } |
private: |