| Index: cc/animation/animation_timeline.cc
|
| diff --git a/cc/animation/animation_timeline.cc b/cc/animation/animation_timeline.cc
|
| index cb1733109d0914b2ee0bba49ef42c2eeaf4806f5..42591d01dcca4501a00bb809587887a8fb13b3c0 100644
|
| --- a/cc/animation/animation_timeline.cc
|
| +++ b/cc/animation/animation_timeline.cc
|
| @@ -38,7 +38,7 @@ void AnimationTimeline::AttachPlayer(scoped_refptr<AnimationPlayer> player) {
|
| DCHECK(player->id());
|
| player->SetAnimationHost(animation_host_);
|
| player->SetAnimationTimeline(this);
|
| - id_to_player_map_.insert(std::make_pair(player->id(), player));
|
| + id_to_player_map_.insert(std::make_pair(player->id(), std::move(player)));
|
| }
|
|
|
| void AnimationTimeline::DetachPlayer(scoped_refptr<AnimationPlayer> player) {
|
|
|