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

Unified Diff: cc/animation/layer_animation_controller.cc

Issue 1255883006: CC Animation: Fix pauseAnimation so it doesn't reset blink negative delays (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disable
Patch Set: Add the test. Created 5 years, 5 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 | « no previous file | cc/animation/layer_animation_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/layer_animation_controller.cc
diff --git a/cc/animation/layer_animation_controller.cc b/cc/animation/layer_animation_controller.cc
index 54b1a717f7868d59ebc17c3bc7835d3ff8caa9c3..1b6036510c58930959f1aa25e23b1120bd59fe6f 100644
--- a/cc/animation/layer_animation_controller.cc
+++ b/cc/animation/layer_animation_controller.cc
@@ -46,7 +46,8 @@ void LayerAnimationController::PauseAnimation(int animation_id,
for (size_t i = 0; i < animations_.size(); ++i) {
if (animations_[i]->id() == animation_id) {
animations_[i]->SetRunState(Animation::PAUSED,
- time_offset + animations_[i]->start_time());
+ time_offset + animations_[i]->start_time() +
+ animations_[i]->time_offset());
}
}
}
« no previous file with comments | « no previous file | cc/animation/layer_animation_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698