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

Unified Diff: Source/core/layout/OrderIterator.cpp

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/OrderIterator.h ('k') | Source/core/layout/PaintInvalidationState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/OrderIterator.cpp
diff --git a/Source/core/layout/OrderIterator.cpp b/Source/core/layout/OrderIterator.cpp
index c26df39ddafcec941483d855259d55823a9fa8e0..2892f8329cfd01210c56e48bdc3101958414e0a1 100644
--- a/Source/core/layout/OrderIterator.cpp
+++ b/Source/core/layout/OrderIterator.cpp
@@ -31,24 +31,24 @@
#include "config.h"
#include "core/layout/OrderIterator.h"
-#include "core/rendering/RenderBox.h"
+#include "core/layout/LayoutBox.h"
namespace blink {
-OrderIterator::OrderIterator(const RenderBox* containerBox)
+OrderIterator::OrderIterator(const LayoutBox* containerBox)
: m_containerBox(containerBox)
, m_currentChild(0)
, m_isReset(false)
{
}
-RenderBox* OrderIterator::first()
+LayoutBox* OrderIterator::first()
{
reset();
return next();
}
-RenderBox* OrderIterator::next()
+LayoutBox* OrderIterator::next()
{
do {
if (!m_currentChild) {
@@ -84,7 +84,7 @@ OrderIteratorPopulator::~OrderIteratorPopulator()
m_iterator.reset();
}
-void OrderIteratorPopulator::collectChild(const RenderBox* child)
+void OrderIteratorPopulator::collectChild(const LayoutBox* child)
{
m_iterator.m_orderValues.insert(child->style()->order());
}
« no previous file with comments | « Source/core/layout/OrderIterator.h ('k') | Source/core/layout/PaintInvalidationState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698