| Index: cc/animation/layer_animation_controller_unittest.cc
|
| diff --git a/cc/animation/layer_animation_controller_unittest.cc b/cc/animation/layer_animation_controller_unittest.cc
|
| index 9098e3eec1fcb4b292acc6b62cc23c1ea9098534..8e51eb89667386af61247ed38f8b41cb8160f284 100644
|
| --- a/cc/animation/layer_animation_controller_unittest.cc
|
| +++ b/cc/animation/layer_animation_controller_unittest.cc
|
| @@ -557,11 +557,17 @@ class FakeAnimationDelegate : public AnimationDelegate {
|
| : started_(false),
|
| finished_(false) {}
|
|
|
| - virtual void NotifyAnimationStarted(double time) OVERRIDE {
|
| + virtual void NotifyAnimationStarted(
|
| + double wall_clock_time,
|
| + double monotonic_time,
|
| + Animation::TargetProperty target_property) OVERRIDE {
|
| started_ = true;
|
| }
|
|
|
| - virtual void NotifyAnimationFinished(double time) OVERRIDE {
|
| + virtual void NotifyAnimationFinished(
|
| + double wall_clock_time,
|
| + double monotonic_time,
|
| + Animation::TargetProperty target_property) OVERRIDE {
|
| finished_ = true;
|
| }
|
|
|
|
|