| Index: third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| index 95c1428b944ccd1eb3a1569df3cf3f4334756c8b..00ff50cdf75da0c175d948129870e08409989320 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| @@ -148,22 +148,6 @@ public:
|
| bool hasInvalidations() { return !m_invalidations.isEmpty(); }
|
| #endif
|
|
|
| - void startTrackingPaintInvalidationObjects()
|
| - {
|
| - DCHECK(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| - m_trackedPaintInvalidationObjects = adoptPtr(new Vector<String>());
|
| - }
|
| - void stopTrackingPaintInvalidationObjects()
|
| - {
|
| - DCHECK(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| - m_trackedPaintInvalidationObjects = nullptr;
|
| - }
|
| - Vector<String> trackedPaintInvalidationObjects()
|
| - {
|
| - DCHECK(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| - return m_trackedPaintInvalidationObjects ? *m_trackedPaintInvalidationObjects : Vector<String>();
|
| - }
|
| -
|
| #if DCHECK_IS_ON()
|
| void assertDisplayItemClientsAreLive();
|
| #endif
|
| @@ -252,8 +236,6 @@ private:
|
| DisplayItemIndicesByClientMap m_newDisplayItemIndicesByClient;
|
| #endif
|
|
|
| - OwnPtr<Vector<String>> m_trackedPaintInvalidationObjects;
|
| -
|
| DisplayItemCacheGeneration m_currentCacheGeneration;
|
| };
|
|
|
|
|