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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp

Issue 2810873007: Replace LayoutPart::GetFrameViewBase with GetNodeFrameView (Closed)
Patch Set: 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/inspector/InspectorLayerTreeAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
index 93104cde5a1eb1588099b5b6f5e0a3459d57333f..7787b6105a9f435ade83f51c1df9bf7cebcac4ce 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
@@ -267,7 +267,7 @@ void InspectorLayerTreeAgent::BuildLayerIdToNodeIdMap(
if (!root->GetLayoutObject().IsLayoutIFrame())
return;
FrameView* child_frame_view =
- ToFrameView(ToLayoutPart(root->GetLayoutObject()).GetFrameViewBase());
+ ToLayoutPart(root->GetLayoutObject()).GetNodeFrameView();
LayoutViewItem child_layout_view_item = child_frame_view->GetLayoutViewItem();
if (!child_layout_view_item.IsNull()) {
if (PaintLayerCompositor* child_compositor =

Powered by Google App Engine
This is Rietveld 408576698