Index: third_party/WebKit/Source/core/input/MouseEventManager.h |
diff --git a/third_party/WebKit/Source/core/input/MouseEventManager.h b/third_party/WebKit/Source/core/input/MouseEventManager.h |
index 87240bbafab207a6c17aa1f4907b698fb89c08b1..9bebf63370320a074b44131ab70c284fc80939a8 100644 |
--- a/third_party/WebKit/Source/core/input/MouseEventManager.h |
+++ b/third_party/WebKit/Source/core/input/MouseEventManager.h |
@@ -57,7 +57,8 @@ class CORE_EXPORT MouseEventManager final |
const WebMouseEvent&); |
WebInputEventResult DispatchMouseClickIfNeeded( |
- const MouseEventWithHitTestResults&); |
+ const MouseEventWithHitTestResults&, |
+ Element& mouse_release_target); |
WebInputEventResult DispatchDragSrcEvent(const AtomicString& event_type, |
const WebMouseEvent&); |
@@ -138,7 +139,7 @@ class CORE_EXPORT MouseEventManager final |
Node* MousePressNode(); |
void SetMousePressNode(Node*); |
- void SetClickNode(Node*); |
+ void SetClickElement(Element*); |
void SetClickCount(int); |
bool MouseDownMayStartDrag(); |
@@ -224,7 +225,7 @@ class CORE_EXPORT MouseEventManager final |
Member<Node> mouse_press_node_; |
int click_count_; |
- Member<Node> click_node_; |
+ Member<Element> click_element_; |
IntPoint mouse_down_pos_; // In our view's coords. |
TimeTicks mouse_down_timestamp_; |