| Index: cc/animation/animation_player.cc
|
| diff --git a/cc/animation/animation_player.cc b/cc/animation/animation_player.cc
|
| index 68a62943a25be049208e4a8c4fbf8995cb13aa16..a853a7c4973829892f92ca045a45d51e9ed9748b 100644
|
| --- a/cc/animation/animation_player.cc
|
| +++ b/cc/animation/animation_player.cc
|
| @@ -187,6 +187,15 @@ void AnimationPlayer::NotifyAnimationFinished(
|
| target_property, group);
|
| }
|
|
|
| +void AnimationPlayer::NotifyAnimationAborted(
|
| + base::TimeTicks monotonic_time,
|
| + Animation::TargetProperty target_property,
|
| + int group) {
|
| + if (layer_animation_delegate_)
|
| + layer_animation_delegate_->NotifyAnimationAborted(monotonic_time,
|
| + target_property, group);
|
| +}
|
| +
|
| void AnimationPlayer::SetNeedsCommit() {
|
| DCHECK(animation_host_);
|
| animation_host_->SetNeedsCommit();
|
|
|