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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp

Issue 2724083002: [SPv2] Decomposite otherwise-compositable animations that paint nothing. (Closed)
Patch Set: Progress. Created 3 years, 9 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/compositing/PaintArtifactCompositorTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
index e770539f028c02b239265ab568cbfb6ae50f6d46..6a5637267c07a8fdee391d99f2050582f6c16bc3 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
@@ -121,8 +121,9 @@ class PaintArtifactCompositorTestWithPropertyTrees
void update(const PaintArtifact& artifact) {
std::unique_ptr<GeometryMapper> geometryMapper = GeometryMapper::create();
- m_paintArtifactCompositor->update(artifact, nullptr, false,
- *geometryMapper);
+ CompositorElementIdSet elementIds;
+ m_paintArtifactCompositor->update(artifact, nullptr, false, *geometryMapper,
+ elementIds);
m_webLayerTreeView->layerTreeHost()->LayoutAndUpdateLayers();
}

Powered by Google App Engine
This is Rietveld 408576698