| Index: third_party/WebKit/Source/core/layout/LayoutObject.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| index 5063dfb4ea7186433b2840f24415e69ea8f63d35..2fc3574d928d22d38866f0a1e98b1513e37cd38b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| @@ -1120,7 +1120,8 @@ public:
|
| void invalidatePaintUsingContainer(const LayoutBoxModelObject& paintInvalidationContainer, const LayoutRect&, PaintInvalidationReason) const;
|
|
|
| // Invalidate the paint of a specific subrectangle within a given object. The rect is in the object's coordinate space.
|
| - void invalidatePaintRectangle(const LayoutRect&) const;
|
| + // If a DisplayItemClient is specified, that client is invalidated rather than |this|.
|
| + void invalidatePaintRectangle(const LayoutRect&, DisplayItemClient* = nullptr) const;
|
|
|
| // Walk the tree after layout issuing paint invalidations for layoutObjects that have changed or moved, updating bounds that have changed, and clearing paint invalidation state.
|
| virtual void invalidateTreeIfNeeded(const PaintInvalidationState&);
|
|
|