| 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 8ccfec8f002c35b49532052ed2c2677055b4e500..47c714f07f800903f71471b82be2b9ed14d1aaba 100644
|
| --- a/cc/animation/layer_animation_controller_unittest.cc
|
| +++ b/cc/animation/layer_animation_controller_unittest.cc
|
| @@ -766,11 +766,17 @@ class FakeAnimationDelegate : public AnimationDelegate {
|
| : started_(false),
|
| finished_(false) {}
|
|
|
| - virtual void NotifyAnimationStarted(double time) OVERRIDE {
|
| + virtual void NotifyAnimationStarted(
|
| + double wall_clock_time,
|
| + base::TimeTicks monotonic_time,
|
| + Animation::TargetProperty target_property) OVERRIDE {
|
| started_ = true;
|
| }
|
|
|
| - virtual void NotifyAnimationFinished(double time) OVERRIDE {
|
| + virtual void NotifyAnimationFinished(
|
| + double wall_clock_time,
|
| + base::TimeTicks monotonic_time,
|
| + Animation::TargetProperty target_property) OVERRIDE {
|
| finished_ = true;
|
| }
|
|
|
|
|