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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationTimelineTest.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/AnimationTimelineTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp b/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
index 7133299441b9842b2ae372a9f19753bf92b6017e..e0ba6e30f4df0029afd651c03418da74cff9b227 100644
--- a/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
@@ -76,7 +76,8 @@ class AnimationAnimationTimelineTest : public ::testing::Test {
void updateClockAndService(double time) {
document->animationClock().updateTime(time);
- document->compositorPendingAnimations().update(false);
+ document->compositorPendingAnimations().update(
+ Optional<CompositorElementIdSet>(), false);
timeline->serviceAnimations(TimingUpdateForAnimationFrame);
timeline->scheduleNextService();
}

Powered by Google App Engine
This is Rietveld 408576698