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

Unified Diff: Source/core/layout/LayoutMultiColumnSpannerPlaceholder.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
Index: Source/core/layout/LayoutMultiColumnSpannerPlaceholder.h
diff --git a/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.h b/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.h
index ec6cb85bbeced49cf67952c15d8ae05743cfaf73..a3929aabcfd2a66ba66511b2155ff1a2e282f1b8 100644
--- a/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.h
+++ b/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.h
@@ -13,15 +13,15 @@ namespace blink {
// descendant of the flow thread, but due to its out-of-flow nature, we need something on the
// outside to take care of its positioning and sizing. LayoutMultiColumnSpannerPlaceholder objects
// are siblings of LayoutMultiColumnSet objects, i.e. direct children of the multicol container.
-class LayoutMultiColumnSpannerPlaceholder final : public RenderBox {
+class LayoutMultiColumnSpannerPlaceholder final : public LayoutBox {
public:
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutMultiColumnSpannerPlaceholder || RenderBox::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutMultiColumnSpannerPlaceholder || LayoutBox::isOfType(type); }
- static LayoutMultiColumnSpannerPlaceholder* createAnonymous(const LayoutStyle& parentStyle, RenderBox&);
+ static LayoutMultiColumnSpannerPlaceholder* createAnonymous(const LayoutStyle& parentStyle, LayoutBox&);
LayoutFlowThread* flowThread() const { return toRenderBlockFlow(parent())->multiColumnFlowThread(); }
- RenderBox* rendererInFlowThread() const { return m_rendererInFlowThread; }
+ LayoutBox* rendererInFlowThread() const { return m_rendererInFlowThread; }
void updateMarginProperties();
protected:
@@ -37,9 +37,9 @@ protected:
virtual const char* renderName() const override;
private:
- LayoutMultiColumnSpannerPlaceholder(RenderBox*);
+ LayoutMultiColumnSpannerPlaceholder(LayoutBox*);
- RenderBox* m_rendererInFlowThread; // The actual column-span:all renderer inside the flow thread.
+ LayoutBox* m_rendererInFlowThread; // The actual column-span:all renderer inside the flow thread.
};
DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutMultiColumnSpannerPlaceholder, isLayoutMultiColumnSpannerPlaceholder());
« no previous file with comments | « Source/core/layout/LayoutMultiColumnSet.cpp ('k') | Source/core/layout/LayoutMultiColumnSpannerPlaceholder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698