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

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

Issue 2737883002: Rename LayoutPart::widget to LayoutPart::frameViewBase (Closed)
Patch Set: Created 3 years, 9 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 082ed28ad7608107307401a1e2471f1274d199e3..87a3a8decbee9a7bf31afd9df8ef45a2f8851086 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -319,7 +319,7 @@ static LocalFrame* subframeForTargetNode(Node* node) {
if (!layoutObject || !layoutObject->isLayoutPart())
return nullptr;
- FrameViewBase* frameViewBase = toLayoutPart(layoutObject)->widget();
+ FrameViewBase* frameViewBase = toLayoutPart(layoutObject)->frameViewBase();
if (!frameViewBase || !frameViewBase->isFrameView())
return nullptr;

Powered by Google App Engine
This is Rietveld 408576698