| Index: cc/animation/layer_animation_controller.cc
|
| diff --git a/cc/animation/layer_animation_controller.cc b/cc/animation/layer_animation_controller.cc
|
| index ea7436c53c586826d26821961334b9a250c27517..47102d8dcee879193ed11da98af6cc37f0b400fe 100644
|
| --- a/cc/animation/layer_animation_controller.cc
|
| +++ b/cc/animation/layer_animation_controller.cc
|
| @@ -275,7 +275,8 @@ void LayerAnimationController::NotifyAnimationStarted(
|
| FOR_EACH_OBSERVER(LayerAnimationEventObserver, event_observers_,
|
| OnAnimationStarted(event));
|
| if (layer_animation_delegate_)
|
| - layer_animation_delegate_->NotifyAnimationStarted(wall_clock_time);
|
| + layer_animation_delegate_->NotifyAnimationStarted(
|
| + wall_clock_time, event.monotonic_time, event.target_property);
|
|
|
| return;
|
| }
|
| @@ -290,7 +291,8 @@ void LayerAnimationController::NotifyAnimationStarted(
|
| FOR_EACH_OBSERVER(LayerAnimationEventObserver, event_observers_,
|
| OnAnimationStarted(event));
|
| if (layer_animation_delegate_)
|
| - layer_animation_delegate_->NotifyAnimationStarted(wall_clock_time);
|
| + layer_animation_delegate_->NotifyAnimationStarted(
|
| + wall_clock_time, event.monotonic_time, event.target_property);
|
|
|
| return;
|
| }
|
| @@ -302,7 +304,8 @@ void LayerAnimationController::NotifyAnimationFinished(
|
| double wall_clock_time) {
|
| if (event.is_impl_only) {
|
| if (layer_animation_delegate_)
|
| - layer_animation_delegate_->NotifyAnimationFinished(wall_clock_time);
|
| + layer_animation_delegate_->NotifyAnimationFinished(
|
| + wall_clock_time, event.monotonic_time, event.target_property);
|
| return;
|
| }
|
|
|
| @@ -311,7 +314,8 @@ void LayerAnimationController::NotifyAnimationFinished(
|
| active_animations_[i]->target_property() == event.target_property) {
|
| active_animations_[i]->set_received_finished_event(true);
|
| if (layer_animation_delegate_)
|
| - layer_animation_delegate_->NotifyAnimationFinished(wall_clock_time);
|
| + layer_animation_delegate_->NotifyAnimationFinished(
|
| + wall_clock_time, event.monotonic_time, event.target_property);
|
|
|
| return;
|
| }
|
|
|