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

Unified Diff: Source/core/html/HTMLFrameElement.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/core.gypi ('k') | Source/core/html/HTMLFrameSetElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameElement.cpp
diff --git a/Source/core/html/HTMLFrameElement.cpp b/Source/core/html/HTMLFrameElement.cpp
index 85078118268f0d3b448db1ceaf1486dd086c6321..0d8dda5ad66622fba28c1ac6a256a142c79dcd75 100644
--- a/Source/core/html/HTMLFrameElement.cpp
+++ b/Source/core/html/HTMLFrameElement.cpp
@@ -27,7 +27,7 @@
#include "core/HTMLNames.h"
#include "core/dom/ElementTraversal.h"
#include "core/html/HTMLFrameSetElement.h"
-#include "core/rendering/RenderFrame.h"
+#include "core/layout/LayoutFrame.h"
namespace blink {
@@ -50,7 +50,7 @@ bool HTMLFrameElement::rendererIsNeeded(const LayoutStyle&)
LayoutObject* HTMLFrameElement::createRenderer(const LayoutStyle&)
{
- return new RenderFrame(this);
+ return new LayoutFrame(this);
}
bool HTMLFrameElement::noResize() const
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/html/HTMLFrameSetElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698