OLD | NEW |
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 Loading... |
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 |
OLD | NEW |