| Index: third_party/WebKit/Source/platform/scroll/ScrollAnimator.cpp
|
| diff --git a/third_party/WebKit/Source/platform/scroll/ScrollAnimator.cpp b/third_party/WebKit/Source/platform/scroll/ScrollAnimator.cpp
|
| index 61742d3ca0799c6ddf73ccc705a571e98b33a201..6a054389e7a9148e1ec8653addc18eed45a3a0d1 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/ScrollAnimator.cpp
|
| +++ b/third_party/WebKit/Source/platform/scroll/ScrollAnimator.cpp
|
| @@ -255,7 +255,7 @@ bool ScrollAnimator::sendAnimationToCompositor()
|
| int animationId = animation->id();
|
| int animationGroupId = animation->group();
|
|
|
| - bool sentToCompositor = addAnimation(animation.release());
|
| + bool sentToCompositor = addAnimation(std::move(animation));
|
| if (sentToCompositor) {
|
| m_runState = RunState::RunningOnCompositor;
|
| m_compositorAnimationId = animationId;
|
|
|