| Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| index 67ffa078bd29636e2bddbc08d819cbcd9e414710..572670fc4188d4e2b7f8a1d276868b1499c4e0af 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -136,7 +136,7 @@ void LayoutTableSection::styleDidChange(StyleDifference diff, const ComputedStyl
|
| table->invalidateCollapsedBorders();
|
|
|
| if (LayoutTableBoxComponent::doCellsHaveDirtyWidth(*this, *table, diff, *oldStyle))
|
| - markAllCellsWidthsDirtyAndOrNeedsLayout(MarkDirtyAndNeedsLayout);
|
| + markAllCellsWidthsDirtyAndOrNeedsLayout(LayoutTable::MarkDirtyAndNeedsLayout);
|
| }
|
|
|
| void LayoutTableSection::willBeRemovedFromTree()
|
| @@ -1238,12 +1238,12 @@ bool LayoutTableSection::recalcChildOverflowAfterStyleChange()
|
| return childrenOverflowChanged;
|
| }
|
|
|
| -void LayoutTableSection::markAllCellsWidthsDirtyAndOrNeedsLayout(WhatToMarkAllCells whatToMark)
|
| +void LayoutTableSection::markAllCellsWidthsDirtyAndOrNeedsLayout(LayoutTable::WhatToMarkAllCells whatToMark)
|
| {
|
| for (LayoutTableRow* row = firstRow(); row; row = row->nextRow()) {
|
| for (LayoutTableCell* cell = row->firstCell(); cell; cell = cell->nextCell()) {
|
| cell->setPreferredLogicalWidthsDirty();
|
| - if (whatToMark == MarkDirtyAndNeedsLayout)
|
| + if (whatToMark == LayoutTable::MarkDirtyAndNeedsLayout)
|
| cell->setChildNeedsLayout();
|
| }
|
| }
|
|
|