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

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

Issue 2676923002: End-to-end prototype of compositor scrolling with slimming paint v2 (Closed)
Patch Set: Add SPV2 test of didScroll callback Created 3 years, 10 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 5dd795ed2319cda2be1b601ba235d95e66dfd712..1dccb27619bf29fa526119cb33f60993f6ce12b5 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
@@ -119,7 +119,9 @@ class PaintArtifactCompositorTestWithPropertyTrees
void update(const PaintArtifact& artifact) {
GeometryMapper geometryMapper;
- m_paintArtifactCompositor->update(artifact, nullptr, false, geometryMapper);
+ PaintArtifactCompositor::ScrollClientMap scrollClients;
+ m_paintArtifactCompositor->update(artifact, nullptr, false, geometryMapper,
+ scrollClients);
m_webLayerTreeView->layerTreeHost()->LayoutAndUpdateLayers();
}

Powered by Google App Engine
This is Rietveld 408576698