| 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 9c37179e8907ae7dec32fa7bc319a9aad0d69393..b5b9f2e177ee7259014ead01a963f2ab3e430cce 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -1118,9 +1118,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)
|
|
|