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

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

Issue 2766053002: [refactor] Fix autofill features for payments when the form is inside an OOPIF (Closed)
Patch Set: Using Node& instead of Node* Created 3 years, 8 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 7d8aeabcfe489045402819de9ffbd4571fd90690..b6b378fd0c7bafca8b0e328a3aa687af1b446b4f 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -726,7 +726,7 @@ WebInputEventResult EventHandler::handleMousePressEvent(
DCHECK_EQ(WebInputEvent::MouseDown, mouseEvent.type());
HitTestResult result = mev.hitTestResult();
result.setToShadowHostIfInRestrictedShadowRoot();
- m_frame->chromeClient().onMouseDown(result.innerNode());
+ m_frame->chromeClient().onMouseDown(*result.innerNode());
}
return eventResult;

Powered by Google App Engine
This is Rietveld 408576698