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

Unified Diff: Source/core/layout/LayoutFrame.cpp

Issue 929223003: Move and rename RenderFrame and RenderFrameSet. (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/layout/LayoutFrame.h ('k') | Source/core/layout/LayoutFrameSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutFrame.cpp
diff --git a/Source/core/rendering/RenderFrame.cpp b/Source/core/layout/LayoutFrame.cpp
similarity index 85%
rename from Source/core/rendering/RenderFrame.cpp
rename to Source/core/layout/LayoutFrame.cpp
index 471b4482fb3e0128e6895f375b9b3126cd133fe7..49609a73d8809e719925c936c477142e0b29f1c6 100644
--- a/Source/core/rendering/RenderFrame.cpp
+++ b/Source/core/layout/LayoutFrame.cpp
@@ -22,29 +22,29 @@
*/
#include "config.h"
-#include "core/rendering/RenderFrame.h"
+#include "core/layout/LayoutFrame.h"
-#include "core/html/HTMLFrameElement.h"
#include "core/frame/FrameView.h"
+#include "core/html/HTMLFrameElement.h"
namespace blink {
-RenderFrame::RenderFrame(HTMLFrameElement* frame)
+LayoutFrame::LayoutFrame(HTMLFrameElement* frame)
: LayoutPart(frame)
{
setInline(false);
}
-FrameEdgeInfo RenderFrame::edgeInfo() const
+FrameEdgeInfo LayoutFrame::edgeInfo() const
{
HTMLFrameElement* element = toHTMLFrameElement(node());
return FrameEdgeInfo(element->noResize(), element->hasFrameBorder());
}
-void RenderFrame::updateFromElement()
+void LayoutFrame::updateFromElement()
{
if (parent() && parent()->isFrameSet())
- toRenderFrameSet(parent())->notifyFrameEdgeInfoChanged();
+ toLayoutFrameSet(parent())->notifyFrameEdgeInfoChanged();
}
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutFrame.h ('k') | Source/core/layout/LayoutFrameSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698