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

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

Issue 930183002: Move and rename RenderEmbeddedObject and RenderIFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename properly to LayoutIFrame in test expectations. Created 5 years, 10 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
« no previous file with comments | « Source/core/html/PluginDocument.cpp ('k') | Source/core/layout/LayoutApplet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorLayerTreeAgent.cpp
diff --git a/Source/core/inspector/InspectorLayerTreeAgent.cpp b/Source/core/inspector/InspectorLayerTreeAgent.cpp
index 051ff7ca15f3ef90d3e7a128503a4fbb01a5bc18..a0e05a91d426100fab80cb0577eea2928e64df57 100644
--- a/Source/core/inspector/InspectorLayerTreeAgent.cpp
+++ b/Source/core/inspector/InspectorLayerTreeAgent.cpp
@@ -238,7 +238,7 @@ void InspectorLayerTreeAgent::buildLayerIdToNodeIdMap(Layer* root, LayerIdToNode
}
for (Layer* child = root->firstChild(); child; child = child->nextSibling())
buildLayerIdToNodeIdMap(child, layerIdToNodeIdMap);
- if (!root->renderer()->isRenderIFrame())
+ if (!root->renderer()->isLayoutIFrame())
return;
FrameView* childFrameView = toFrameView(toLayoutPart(root->renderer())->widget());
if (RenderView* childRenderView = childFrameView->renderView()) {
« no previous file with comments | « Source/core/html/PluginDocument.cpp ('k') | Source/core/layout/LayoutApplet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698