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

Side by Side Diff: cc/test/animation_test_common.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, 4 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 unified diff | Download patch
« no previous file with comments | « cc/test/animation_test_common.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/test/animation_test_common.h" 5 #include "cc/test/animation_test_common.h"
6 6
7 #include "cc/animation/animation_id_provider.h" 7 #include "cc/animation/animation_id_provider.h"
8 #include "cc/animation/animation_player.h" 8 #include "cc/animation/animation_player.h"
9 #include "cc/animation/keyframed_animation_curve.h" 9 #include "cc/animation/keyframed_animation_curve.h"
10 #include "cc/animation/layer_animation_controller.h" 10 #include "cc/animation/layer_animation_controller.h"
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 use_timing_function); 375 use_timing_function);
376 } 376 }
377 377
378 int AddAnimatedFilterToPlayer(AnimationPlayer* player, 378 int AddAnimatedFilterToPlayer(AnimationPlayer* player,
379 double duration, 379 double duration,
380 float start_brightness, 380 float start_brightness,
381 float end_brightness) { 381 float end_brightness) {
382 return AddAnimatedFilter(player, duration, start_brightness, end_brightness); 382 return AddAnimatedFilter(player, duration, start_brightness, end_brightness);
383 } 383 }
384 384
385 int AddOpacityStepsToController(LayerAnimationController* target,
386 double duration,
387 float start_opacity,
388 float end_opacity,
389 int num_steps) {
390 scoped_ptr<KeyframedFloatAnimationCurve> curve(
391 KeyframedFloatAnimationCurve::Create());
392
393 scoped_ptr<TimingFunction> func =
394 StepsTimingFunction::Create(num_steps, 0.5f);
395 if (duration > 0.0)
396 curve->AddKeyframe(
397 FloatKeyframe::Create(base::TimeDelta(), start_opacity, func.Pass()));
398 curve->AddKeyframe(FloatKeyframe::Create(
399 base::TimeDelta::FromSecondsD(duration), end_opacity, nullptr));
400
401 int id = AnimationIdProvider::NextAnimationId();
402
403 scoped_ptr<Animation> animation(
404 Animation::Create(curve.Pass(), id, AnimationIdProvider::NextGroupId(),
405 Animation::OPACITY));
406 animation->set_needs_synchronized_start_time(true);
407
408 target->AddAnimation(animation.Pass());
409 return id;
410 }
411
385 } // namespace cc 412 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/animation_test_common.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698