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

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

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/layout/LayoutTable.cpp ('k') | Source/core/layout/LayoutTableCaption.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutTableAlgorithmAuto.cpp
diff --git a/Source/core/layout/LayoutTableAlgorithmAuto.cpp b/Source/core/layout/LayoutTableAlgorithmAuto.cpp
index ec07688fac840d7ac9f62d6318d6861e80b418cf..744c1e5c1d2f60d30574244c18bed002167c1923 100644
--- a/Source/core/layout/LayoutTableAlgorithmAuto.cpp
+++ b/Source/core/layout/LayoutTableAlgorithmAuto.cpp
@@ -48,7 +48,7 @@ void LayoutTableAlgorithmAuto::recalcColumn(unsigned effCol)
LayoutTableCell* fixedContributor = 0;
LayoutTableCell* maxContributor = 0;
- for (RenderObject* child = m_table->children()->firstChild(); child; child = child->nextSibling()) {
+ for (LayoutObject* child = m_table->children()->firstChild(); child; child = child->nextSibling()) {
if (child->isLayoutTableCol()) {
// LayoutTableCols don't have the concept of preferred logical width, but we need to clear their dirty bits
// so that if we call setPreferredWidthsDirty(true) on a col or one of its descendants, we'll mark it's
« no previous file with comments | « Source/core/layout/LayoutTable.cpp ('k') | Source/core/layout/LayoutTableCaption.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698