| 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 578c9e40e85b0a2c68123e9a2395d85c67a6723e..cef8a14c13635b789fb1207b33fc612b776c7b92 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.h
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.h
|
| @@ -109,6 +109,8 @@ public:
|
| void dispatchFakeMouseMoveEventSoon();
|
| void dispatchFakeMouseMoveEventSoonInQuad(const FloatQuad&);
|
|
|
| + static HitTestResult hitTestResultInFrame(LocalFrame*, const LayoutPoint&, HitTestRequest::HitTestRequestType hitType = HitTestRequest::ReadOnly | HitTestRequest::Active);
|
| +
|
| HitTestResult hitTestResultAtPoint(const LayoutPoint&,
|
| HitTestRequest::HitTestRequestType hitType = HitTestRequest::ReadOnly | HitTestRequest::Active,
|
| const LayoutSize& padding = LayoutSize());
|
| @@ -311,8 +313,6 @@ private:
|
|
|
| void customizedScroll(const Node& startNode, ScrollState&);
|
|
|
| - HitTestResult hitTestResultInFrame(LocalFrame*, const LayoutPoint&, HitTestRequest::HitTestRequestType hitType = HitTestRequest::ReadOnly | HitTestRequest::Active);
|
| -
|
| void invalidateClick();
|
|
|
| Node* updateMouseEventTargetNode(Node*, const PlatformMouseEvent&);
|
| @@ -378,10 +378,6 @@ private:
|
| // the given element.
|
| bool slideFocusOnShadowHostIfNecessary(const Element&);
|
|
|
| - void dispatchPointerEvents(const PlatformTouchEvent&, HeapVector<TouchInfo>&);
|
| -
|
| - WebInputEventResult dispatchTouchEvents(const PlatformTouchEvent&, HeapVector<TouchInfo>&, bool, bool);
|
| -
|
| // NOTE: If adding a new field to this class please ensure that it is
|
| // cleared in |EventHandler::clear()|.
|
|
|
| @@ -443,18 +439,6 @@ private:
|
| PlatformMouseEvent m_mouseDown;
|
| RefPtr<UserGestureToken> m_lastMouseDownUserGestureToken;
|
|
|
| - // The target of each active touch point indexed by the touch ID.
|
| - using TouchTargetMap = HeapHashMap<unsigned, Member<EventTarget>, DefaultHash<unsigned>::Hash, WTF::UnsignedWithZeroKeyHashTraits<unsigned>>;
|
| - TouchTargetMap m_targetForTouchID;
|
| - using TouchRegionMap = HeapHashMap<unsigned, String, DefaultHash<unsigned>::Hash, WTF::UnsignedWithZeroKeyHashTraits<unsigned>>;
|
| - TouchRegionMap m_regionForTouchID;
|
| -
|
| - // If set, the document of the active touch sequence. Unset if no touch sequence active.
|
| - Member<Document> m_touchSequenceDocument;
|
| - RefPtr<UserGestureToken> m_touchSequenceUserGestureToken;
|
| -
|
| - bool m_touchPressed;
|
| -
|
| PointerEventManager m_pointerEventManager;
|
|
|
| Member<Node> m_scrollGestureHandlingNode;
|
|
|