| Index: third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
|
| index 2977f234e14c2838756887bfce545060711430b2..c3d1f3a88ca11e1521d14aabe064f9a82b4b9388 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
|
| @@ -181,7 +181,7 @@ public:
|
|
|
| void setNeedsDisplay();
|
| // Mark the given rect (in layer coords) as needing display. Never goes deep.
|
| - void setNeedsDisplayInRect(const IntRect&, PaintInvalidationReason);
|
| + void setNeedsDisplayInRect(const IntRect&, PaintInvalidationReason, const DisplayItemClient&);
|
|
|
| void setContentsNeedsDisplay();
|
|
|
| @@ -210,8 +210,7 @@ public:
|
| bool isTrackingPaintInvalidations() const { return m_client->isTrackingPaintInvalidations(); }
|
| void resetTrackedPaintInvalidations();
|
| bool hasTrackedPaintInvalidations() const;
|
| - void trackPaintInvalidationRect(const FloatRect&);
|
| - void trackPaintInvalidationObject(const String&);
|
| + void trackPaintInvalidation(const DisplayItemClient&, const FloatRect&, PaintInvalidationReason);
|
|
|
| void addLinkHighlight(LinkHighlight*);
|
| void removeLinkHighlight(LinkHighlight*);
|
|
|