| Index: cc/animation/element_animations.cc
|
| diff --git a/cc/animation/element_animations.cc b/cc/animation/element_animations.cc
|
| index 1264718395a22132ff5b35e7ee64e9e2188f36f0..cd3a7366b0eaf209e32fdd3f81ebda5d7f57c517 100644
|
| --- a/cc/animation/element_animations.cc
|
| +++ b/cc/animation/element_animations.cc
|
| @@ -259,6 +259,17 @@ void ElementAnimations::NotifyAnimationFinished(
|
| }
|
| }
|
|
|
| +void ElementAnimations::NotifyAnimationAborted(
|
| + base::TimeTicks monotonic_time,
|
| + Animation::TargetProperty target_property,
|
| + int group) {
|
| + for (PlayersListNode* node = players_list_->head();
|
| + node != players_list_->end(); node = node->next()) {
|
| + AnimationPlayer* player = node->value();
|
| + player->NotifyAnimationAborted(monotonic_time, target_property, group);
|
| + }
|
| +}
|
| +
|
| gfx::ScrollOffset ElementAnimations::ScrollOffsetForAnimation() const {
|
| DCHECK(layer_animation_controller_);
|
| if (animation_host()) {
|
|
|