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

Unified Diff: Source/core/layout/LayoutIFrame.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/layout/LayoutIFrame.h ('k') | Source/core/layout/LayoutObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutIFrame.cpp
diff --git a/Source/core/rendering/RenderIFrame.cpp b/Source/core/layout/LayoutIFrame.cpp
similarity index 88%
rename from Source/core/rendering/RenderIFrame.cpp
rename to Source/core/layout/LayoutIFrame.cpp
index 683a2d0faba2b5ee791042c5fb272980713b7673..ea92062cef495f31b13804c3a7243eac8e94dd0a 100644
--- a/Source/core/rendering/RenderIFrame.cpp
+++ b/Source/core/layout/LayoutIFrame.cpp
@@ -24,7 +24,7 @@
*/
#include "config.h"
-#include "core/rendering/RenderIFrame.h"
+#include "core/layout/LayoutIFrame.h"
#include "core/HTMLNames.h"
#include "core/frame/FrameView.h"
@@ -36,29 +36,29 @@ namespace blink {
using namespace HTMLNames;
-RenderIFrame::RenderIFrame(Element* element)
+LayoutIFrame::LayoutIFrame(Element* element)
: LayoutPart(element)
{
}
-bool RenderIFrame::shouldComputeSizeAsReplaced() const
+bool LayoutIFrame::shouldComputeSizeAsReplaced() const
{
return true;
}
-bool RenderIFrame::isInlineBlockOrInlineTable() const
+bool LayoutIFrame::isInlineBlockOrInlineTable() const
{
return isInline();
}
-LayerType RenderIFrame::layerTypeRequired() const
+LayerType LayoutIFrame::layerTypeRequired() const
{
if (style()->resize() != RESIZE_NONE)
return NormalLayer;
return LayoutPart::layerTypeRequired();
}
-void RenderIFrame::layout()
+void LayoutIFrame::layout()
{
ASSERT(needsLayout());
« no previous file with comments | « Source/core/layout/LayoutIFrame.h ('k') | Source/core/layout/LayoutObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698