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

Unified Diff: Source/core/layout/LayoutFrameSet.h

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/LayoutFlowThread.h ('k') | Source/core/layout/LayoutFrameSet.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutFrameSet.h
diff --git a/Source/core/layout/LayoutFrameSet.h b/Source/core/layout/LayoutFrameSet.h
index f2443f37b138b74a357308f9e2a4c81c778482b9..14019e2382772a2aa565d5a2cadb890c16679311 100644
--- a/Source/core/layout/LayoutFrameSet.h
+++ b/Source/core/layout/LayoutFrameSet.h
@@ -23,7 +23,7 @@
#ifndef LayoutFrameSet_h
#define LayoutFrameSet_h
-#include "core/rendering/RenderBox.h"
+#include "core/layout/LayoutBox.h"
namespace blink {
@@ -53,7 +53,7 @@ private:
Vector<bool> m_allowBorder;
};
-class LayoutFrameSet final : public RenderBox {
+class LayoutFrameSet final : public LayoutBox {
public:
LayoutFrameSet(HTMLFrameSetElement*);
virtual ~LayoutFrameSet();
@@ -102,7 +102,7 @@ private:
virtual const LayoutObjectChildList* virtualChildren() const override { return children(); }
virtual const char* renderName() const override { return "LayoutFrameSet"; }
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectFrameSet || RenderBox::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectFrameSet || LayoutBox::isOfType(type); }
virtual void layout() override;
virtual void paint(const PaintInfo&, const LayoutPoint&) override;
« no previous file with comments | « Source/core/layout/LayoutFlowThread.h ('k') | Source/core/layout/LayoutFrameSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698