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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutInline.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/LayoutInline.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutInline.cpp b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
index 0c19c50e2c7a400a90c68fb980d544102ef88a99..5ef0366d72a31aef7640ca2a267b4675ea391a5d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutInline.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
@@ -1079,7 +1079,7 @@ LayoutRect LayoutInline::CulledInlineVisualOverflowBoundingBox() const {
LayoutBox* curr_box = ToLayoutBox(curr);
if (!curr_box->HasSelfPaintingLayer() && curr_box->InlineBoxWrapper()) {
LayoutRect logical_rect =
- curr_box->LogicalVisualOverflowRectForPropagation(StyleRef());
+ curr_box->LogicalVisualOverflowRectForPropagation();
if (is_horizontal) {
logical_rect.MoveBy(curr_box->Location());
result.UniteIfNonZero(logical_rect);
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBoxTest.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableRow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698