Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintController.h

Issue 2000323008: Use original repaint tests for spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698