| Index: Source/platform/graphics/GraphicsLayer.h
|
| diff --git a/Source/platform/graphics/GraphicsLayer.h b/Source/platform/graphics/GraphicsLayer.h
|
| index 22dd3c4856bd6c8a005b0a862d7b6958c4642952..88cbd419fbcdd72426de2019fb26c5464678292f 100644
|
| --- a/Source/platform/graphics/GraphicsLayer.h
|
| +++ b/Source/platform/graphics/GraphicsLayer.h
|
| @@ -220,6 +220,7 @@ public:
|
|
|
| bool isTrackingPaintInvalidations() const { return m_client->isTrackingPaintInvalidations(); }
|
| void resetTrackedPaintInvalidations();
|
| + bool hasTrackedPaintInvalidations() const;
|
| void trackPaintInvalidationRect(const FloatRect&);
|
| void trackPaintInvalidationObject(const String&);
|
|
|
| @@ -252,6 +253,9 @@ public:
|
| // Exposed for tests.
|
| virtual WebLayer* contentsLayer() const { return m_contentsLayer; }
|
|
|
| + static void setDrawDebugRedFillForTesting(bool);
|
| + ContentLayerDelegate* contentLayerDelegateForTesting() const { return m_contentLayerDelegate.get(); }
|
| +
|
| #ifndef NDEBUG
|
| DisplayItemClient displayItemClient() const { return toDisplayItemClient(this); }
|
| String debugName() const { return m_client->debugName(this) + " debug red fill"; }
|
|
|