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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsLayer.h

Issue 2314863002: Revert of Reland Compile under-invalidation checking in all builds (Closed)
Patch Set: Created 4 years, 3 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/GraphicsLayer.h
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
index 159518252575da20b3257004af1ee199d3184465..55fbed9fbc00a33663c6558e6306d5e554cf43ac 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
@@ -207,7 +207,11 @@
void setTracksPaintInvalidations(bool);
bool isTrackingOrCheckingPaintInvalidations() const
{
- return RuntimeEnabledFeatures::paintUnderInvalidationCheckingEnabled() || m_isTrackingPaintInvalidations;
+#if DCHECK_IS_ON()
+ if (RuntimeEnabledFeatures::slimmingPaintUnderInvalidationCheckingEnabled())
+ return true;
+#endif
+ return m_isTrackingPaintInvalidations;
}
void resetTrackedPaintInvalidations();
@@ -294,8 +298,10 @@
typedef HashMap<int, int> RenderingContextMap;
std::unique_ptr<JSONObject> layerTreeAsJSONInternal(LayerTreeFlags, RenderingContextMap&) const;
+#if DCHECK_IS_ON()
PassRefPtr<SkPicture> capturePicture();
void checkPaintUnderInvalidations(const SkPicture&);
+#endif
GraphicsLayerClient* m_client;

Powered by Google App Engine
This is Rietveld 408576698