| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index 52a94d8a16c610ed8ba5f53069053a1001615ead..2d88f2f710a33a441126e99ab60a724e53fb337d 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -1119,9 +1119,9 @@ IntSize LayoutObject::scrollAdjustmentForPaintInvalidation(const LayoutBoxModelO
|
| return IntSize();
|
| }
|
|
|
| -void LayoutObject::invalidatePaintRectangle(const LayoutRect& dirtyRect, DisplayItemClient* displayItemClient) const
|
| +LayoutRect LayoutObject::invalidatePaintRectangle(const LayoutRect& dirtyRect, DisplayItemClient* displayItemClient) const
|
| {
|
| - ObjectPaintInvalidator(*this).invalidatePaintRectangle(dirtyRect, displayItemClient);
|
| + return ObjectPaintInvalidator(*this).invalidatePaintRectangle(dirtyRect, displayItemClient);
|
| }
|
|
|
| void LayoutObject::invalidateTreeIfNeeded(const PaintInvalidationState& paintInvalidationState)
|
|
|