Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 1968653005: Set width=height=1 of mouse like pointer events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index 0aa7ebcf9babbe3fcd8f9422e7bee6cf1f2b8303..6c66e0f5b8908e8a7f4298e0341d0b1c61679743 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -1722,7 +1722,7 @@ void EventHandler::updateMouseEventTargetNodeAndSendEvents(Node* targetNode,
const PlatformMouseEvent& mouseEvent, bool isFrameBoundaryTransition)
{
Node* lastNodeUnderMouse = updateMouseEventTargetNode(targetNode, mouseEvent);
- m_pointerEventManager.sendMouseAndPossiblyPointerNodeTransitionEvents(
+ m_pointerEventManager.sendMouseAndPossiblyPointerBoundaryEvents(
mustaq 2016/05/11 20:42:57 Why is this? "Transition events" more accurately r
Navid Zolghadr 2016/05/11 20:50:20 I was trying to follow Rick's recent email to the
mustaq 2016/05/12 14:03:09 Missed the github comment, sorry. Your renaming lo
lastNodeUnderMouse, m_nodeUnderMouse, mouseEvent,
m_frame->document()->domWindow(), isFrameBoundaryTransition);
}

Powered by Google App Engine
This is Rietveld 408576698