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

Unified Diff: Source/core/layout/LayoutState.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/LayoutSliderContainer.cpp ('k') | Source/core/layout/LayoutState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutState.h
diff --git a/Source/core/layout/LayoutState.h b/Source/core/layout/LayoutState.h
index 531cba4e4c6742e334a63e98d491a505e0dcad0c..9525986fdee1b031d5ab621e3356236a2b8a3687 100644
--- a/Source/core/layout/LayoutState.h
+++ b/Source/core/layout/LayoutState.h
@@ -34,7 +34,7 @@
namespace blink {
class ForceHorriblySlowRectMapping;
-class RenderBox;
+class LayoutBox;
class LayoutFlowThread;
class LayoutObject;
class RenderView;
@@ -47,7 +47,7 @@ public:
// Constructor for sub-tree layout
explicit LayoutState(LayoutObject& root);
- LayoutState(RenderBox&, const LayoutSize& offset, LayoutUnit pageLogicalHeight = 0, bool pageHeightLogicalChanged = false, ColumnInfo* = 0, bool containingBlockLogicalWidthChanged = false);
+ LayoutState(LayoutBox&, const LayoutSize& offset, LayoutUnit pageLogicalHeight = 0, bool pageHeightLogicalChanged = false, ColumnInfo* = 0, bool containingBlockLogicalWidthChanged = false);
~LayoutState();
@@ -57,9 +57,9 @@ public:
// The page logical offset is the object's offset from the top of the page in the page progression
// direction (so an x-offset in vertical text and a y-offset for horizontal text).
- LayoutUnit pageLogicalOffset(const RenderBox&, const LayoutUnit& childLogicalOffset) const;
+ LayoutUnit pageLogicalOffset(const LayoutBox&, const LayoutUnit& childLogicalOffset) const;
- void addForcedColumnBreak(const RenderBox&, const LayoutUnit& childLogicalOffset);
+ void addForcedColumnBreak(const LayoutBox&, const LayoutUnit& childLogicalOffset);
void setColumnInfo(ColumnInfo* columnInfo) { m_columnInfo = columnInfo; }
« no previous file with comments | « Source/core/layout/LayoutSliderContainer.cpp ('k') | Source/core/layout/LayoutState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698