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

Unified Diff: third_party/WebKit/Source/core/animation/CompositorAnimationsTest.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/core/animation/CompositorAnimationsTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp b/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
index 2fe7ce24d183774c044177798fbe0db4cbccb732..96e09a69b2e0e8e15a26e5c83dd2431093526ec5 100644
--- a/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
+++ b/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
@@ -273,7 +273,8 @@ class AnimationCompositorAnimationsTest : public ::testing::Test {
void simulateFrame(double time) {
m_document->animationClock().updateTime(time);
- m_document->compositorPendingAnimations().update(false);
+ m_document->compositorPendingAnimations().update(
+ Optional<CompositorElementIdSet>(), false);
m_timeline->serviceAnimations(TimingUpdateForAnimationFrame);
}

Powered by Google App Engine
This is Rietveld 408576698