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 2edd3bc3d5ce3847941bc9e303c3a86110b3a4ca..749707bdd5154cb3ca451179f5458a8bef45b93e 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp |
@@ -849,7 +849,7 @@ void LayoutTableSection::layout() |
if (LayoutTableRow* rowLayoutObject = m_grid[r].rowLayoutObject) { |
if (!rowLayoutObject->needsLayout()) |
- rowLayoutObject->markForPaginationRelayoutIfNeeded(layouter); |
+ markChildForPaginationRelayoutIfNeeded(*rowLayoutObject, layouter); |
rowLayoutObject->layoutIfNeeded(); |
} |
} |
@@ -1087,7 +1087,7 @@ void LayoutTableSection::layoutRows() |
setLogicalPositionForCell(cell, c); |
if (!cell->needsLayout()) |
- cell->markForPaginationRelayoutIfNeeded(layouter); |
+ markChildForPaginationRelayoutIfNeeded(*cell, layouter); |
cell->layoutIfNeeded(); |