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/paint/PaintPropertyTreePrinter.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/paint/PaintPropertyTreePrinter.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
index 1bf97ca1675af14e5c502aeffe77fc0e77368037..27956d499f5d96047894fe1963c60385d1feb812 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
@@ -493,10 +493,10 @@ class PaintPropertyTreeGraphBuilder {
for (const LayoutObject* child = object.slowFirstChild(); child;
child = child->nextSibling())
writeLayoutObjectNode(*child);
- if (object.isLayoutPart() && toLayoutPart(object).widget() &&
- toLayoutPart(object).widget()->isFrameView()) {
+ if (object.isLayoutPart() && toLayoutPart(object).frameViewBase() &&
+ toLayoutPart(object).frameViewBase()->isFrameView()) {
FrameView* frameView =
- static_cast<FrameView*>(toLayoutPart(object).widget());
+ static_cast<FrameView*>(toLayoutPart(object).frameViewBase());
haraken 2017/03/08 06:13:25 We could use toFrameView.
joelhockey 2017/03/08 06:24:30 Done.
writeFrameViewNode(*frameView, &object);
}
}

Powered by Google App Engine
This is Rietveld 408576698