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

Unified Diff: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp

Issue 2380683006: SPv2: Add support for tracking raster paint invalidations in testing. (Closed)
Patch Set: none 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/core/layout/compositing/CompositedLayerMapping.cpp
diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
index cdaf74601c723e2d27f1a05efe5e4b21434ccf6e..4d5225381b99178fe40359996fd22fcb6d1a4042 100644
--- a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
+++ b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
@@ -2580,10 +2580,10 @@ bool CompositedLayerMapping::isScrollableAreaLayer(const GraphicsLayer* graphics
|| graphicsLayer == layerForScrollCorner();
}
-bool CompositedLayerMapping::isTrackingPaintInvalidations() const
+bool CompositedLayerMapping::isTrackingRasterInvalidations() const
{
GraphicsLayerClient* client = compositor();
- return client ? client->isTrackingPaintInvalidations() : false;
+ return client ? client->isTrackingRasterInvalidations() : false;
}
#if ENABLE(ASSERT)

Powered by Google App Engine
This is Rietveld 408576698