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

Unified Diff: Source/core/rendering/RenderIFrame.cpp

Issue 931003002: Move and rename RenderPart to LayoutPart. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/rendering/RenderIFrame.h ('k') | Source/core/rendering/RenderPart.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderIFrame.cpp
diff --git a/Source/core/rendering/RenderIFrame.cpp b/Source/core/rendering/RenderIFrame.cpp
index f98c7ae8c279d7508f61ef6ab93122cf983093b1..683a2d0faba2b5ee791042c5fb272980713b7673 100644
--- a/Source/core/rendering/RenderIFrame.cpp
+++ b/Source/core/rendering/RenderIFrame.cpp
@@ -37,7 +37,7 @@ namespace blink {
using namespace HTMLNames;
RenderIFrame::RenderIFrame(Element* element)
- : RenderPart(element)
+ : LayoutPart(element)
{
}
@@ -55,7 +55,7 @@ LayerType RenderIFrame::layerTypeRequired() const
{
if (style()->resize() != RESIZE_NONE)
return NormalLayer;
- return RenderPart::layerTypeRequired();
+ return LayoutPart::layerTypeRequired();
}
void RenderIFrame::layout()
« no previous file with comments | « Source/core/rendering/RenderIFrame.h ('k') | Source/core/rendering/RenderPart.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698