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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp

Issue 2863933003: Remove the parameter of LayoutBox::XXXOverflowRectForPropagation() (Closed)
Patch Set: - Created 3 years, 7 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
Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
index 54b6566a729ab2b0e9239cb1ceeab910c457e7f1..440f7a27eb0488ebc422b53e32fe0e7751c1b68f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
@@ -313,12 +313,12 @@ void LayoutTableRow::AddOverflowFromCell(const LayoutTableCell* cell) {
LayoutSize cell_row_offset = cell->Location() - Location();
LayoutRect cell_visual_overflow_rect =
- cell->VisualOverflowRectForPropagation(StyleRef());
+ cell->VisualOverflowRectForPropagation();
cell_visual_overflow_rect.Move(cell_row_offset);
AddContentsVisualOverflow(cell_visual_overflow_rect);
LayoutRect cell_layout_overflow_rect =
- cell->LayoutOverflowRectForPropagation(StyleRef());
+ cell->LayoutOverflowRectForPropagation();
cell_layout_overflow_rect.Move(cell_row_offset);
AddLayoutOverflow(cell_layout_overflow_rect);
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutInline.cpp ('k') | third_party/WebKit/Source/core/layout/api/LineLayoutBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698