| Index: third_party/WebKit/Source/core/animation/animatable/AnimatablePath.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.h b/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.h
|
| index 9533dd9c08477d4b4ea16d700f5e7f871a251e79..baf576e68a828ca681df84b48747d9fe825e2464 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.h
|
| @@ -16,7 +16,7 @@ public:
|
| ~AnimatablePath() override { }
|
| static PassRefPtr<AnimatablePath> create(PassRefPtr<StylePath> path)
|
| {
|
| - return adoptRef(new AnimatablePath(path));
|
| + return adoptRef(new AnimatablePath(std::move(path)));
|
| }
|
|
|
| StylePath* path() const { return m_path.get(); }
|
|
|