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

Unified Diff: Source/core/layout/OrderIterator.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/MultiColumnFragmentainerGroup.cpp ('k') | Source/core/layout/OrderIterator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/OrderIterator.h
diff --git a/Source/core/layout/OrderIterator.h b/Source/core/layout/OrderIterator.h
index 46666469ef0bd937b9b6dc0d9fc9743989808552..fadded49dc53902b7faf487f169cee1bcf56f3b4 100644
--- a/Source/core/layout/OrderIterator.h
+++ b/Source/core/layout/OrderIterator.h
@@ -37,24 +37,24 @@
namespace blink {
-class RenderBox;
+class LayoutBox;
class OrderIterator {
WTF_MAKE_NONCOPYABLE(OrderIterator);
public:
friend class OrderIteratorPopulator;
- OrderIterator(const RenderBox*);
+ OrderIterator(const LayoutBox*);
- RenderBox* currentChild() const { return m_currentChild; }
- RenderBox* first();
- RenderBox* next();
+ LayoutBox* currentChild() const { return m_currentChild; }
+ LayoutBox* first();
+ LayoutBox* next();
void reset();
private:
- const RenderBox* m_containerBox;
+ const LayoutBox* m_containerBox;
- RenderBox* m_currentChild;
+ LayoutBox* m_currentChild;
typedef std::set<int> OrderValues;
OrderValues m_orderValues;
@@ -72,7 +72,7 @@ public:
~OrderIteratorPopulator();
- void collectChild(const RenderBox*);
+ void collectChild(const LayoutBox*);
private:
OrderIterator& m_iterator;
« no previous file with comments | « Source/core/layout/MultiColumnFragmentainerGroup.cpp ('k') | Source/core/layout/OrderIterator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698