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

Unified Diff: third_party/WebKit/Source/core/input/GestureManager.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/GestureManager.cpp
diff --git a/third_party/WebKit/Source/core/input/GestureManager.cpp b/third_party/WebKit/Source/core/input/GestureManager.cpp
index 8cdaaaa95f78415d88032c251967c157947898c9..4ef245c79147f4c4bb8d8c4ccc74777ca481659a 100644
--- a/third_party/WebKit/Source/core/input/GestureManager.cpp
+++ b/third_party/WebKit/Source/core/input/GestureManager.cpp
@@ -230,7 +230,7 @@ WebInputEventResult GestureManager::handleGestureTap(
DCHECK(gestureEvent.type() == WebInputEvent::GestureTap);
HitTestResult result = currentHitTest;
result.setToShadowHostIfInRestrictedShadowRoot();
- m_frame->chromeClient().onMouseDown(result.innerNode());
+ m_frame->chromeClient().onMouseDown(*result.innerNode());
}
// FIXME: Use a hit-test cache to avoid unnecessary hit tests.

Powered by Google App Engine
This is Rietveld 408576698