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

Unified Diff: third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp

Issue 2380683006: SPv2: Add support for tracking raster paint invalidations in testing. (Closed)
Patch Set: none Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/web/LinkHighlightImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
diff --git a/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp b/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
index c3cba1de8ab7ef50d54e54ac280e7e9794d268d1..23a105cd9670e131486ec65b5917a79e8cf10f9a 100644
--- a/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
+++ b/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
@@ -20,10 +20,10 @@
namespace blink {
static void paintLayers(GraphicsLayer& layer, SimDisplayItemList& displayList) {
- if (layer.drawsContent() && layer.hasTrackedPaintInvalidations()) {
+ if (layer.drawsContent() && layer.hasTrackedRasterInvalidations()) {
ContentLayerDelegate* delegate = layer.contentLayerDelegateForTesting();
delegate->paintContents(&displayList);
- layer.resetTrackedPaintInvalidations();
+ layer.resetTrackedRasterInvalidations();
}
if (GraphicsLayer* maskLayer = layer.maskLayer())
« no previous file with comments | « third_party/WebKit/Source/web/LinkHighlightImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698