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

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: Addressing vabr@'s comments 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 cf16ec673be0a424729e5399b0516fef9380a62f..e0d0893536bc587ff77cb44f4f4107bde2dd8fe9 100644
--- a/third_party/WebKit/Source/core/input/GestureManager.cpp
+++ b/third_party/WebKit/Source/core/input/GestureManager.cpp
@@ -234,7 +234,7 @@ WebInputEventResult GestureManager::HandleGestureTap(
DCHECK(gesture_event.GetType() == WebInputEvent::kGestureTap);
HitTestResult result = current_hit_test;
result.SetToShadowHostIfInRestrictedShadowRoot();
- frame_->GetChromeClient().OnMouseDown(result.InnerNode());
+ frame_->GetChromeClient().OnMouseDown(*result.InnerNode());
}
// FIXME: Use a hit-test cache to avoid unnecessary hit tests.

Powered by Google App Engine
This is Rietveld 408576698