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

Unified Diff: Source/core/rendering/LayoutState.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (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/rendering/ImageQualityController.cpp ('k') | Source/core/rendering/LayoutState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/LayoutState.h
diff --git a/Source/core/rendering/LayoutState.h b/Source/core/rendering/LayoutState.h
index 18839a807466f0aada395322bdabc570242f292a..c48a9b9a01b28bf5eba7b609a59fe79c4c7fba1d 100644
--- a/Source/core/rendering/LayoutState.h
+++ b/Source/core/rendering/LayoutState.h
@@ -36,7 +36,7 @@ namespace blink {
class ForceHorriblySlowRectMapping;
class RenderBox;
class RenderFlowThread;
-class RenderObject;
+class LayoutObject;
class RenderView;
class LayoutState {
@@ -45,7 +45,7 @@ public:
// Constructor for root LayoutState created by RenderView
LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView&);
// Constructor for sub-tree layout
- explicit LayoutState(RenderObject& root);
+ explicit LayoutState(LayoutObject& root);
LayoutState(RenderBox&, const LayoutSize& offset, LayoutUnit pageLogicalHeight = 0, bool pageHeightLogicalChanged = false, ColumnInfo* = 0, bool containingBlockLogicalWidthChanged = false);
@@ -77,7 +77,7 @@ public:
ColumnInfo* columnInfo() const { return m_columnInfo; }
- RenderObject& renderer() const { return m_renderer; }
+ LayoutObject& renderer() const { return m_renderer; }
private:
friend class ForceHorriblySlowRectMapping;
@@ -102,7 +102,7 @@ private:
// The offset of the start of the first page in the nearest enclosing pagination model.
LayoutSize m_pageOffset;
- RenderObject& m_renderer;
+ LayoutObject& m_renderer;
};
} // namespace blink
« no previous file with comments | « Source/core/rendering/ImageQualityController.cpp ('k') | Source/core/rendering/LayoutState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698