| Index: third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp
|
| index 326ee898248971019bef8c3d2c5902f0608abab4..deb2889bb8db976e596dd4cfcf48b7f1bf4fc45f 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp
|
| @@ -52,7 +52,7 @@ PassRefPtr<AnimatableValue> AnimatablePath::interpolateTo(const AnimatableValue*
|
| SVGPathBlender blender(&fromSource, &toSource, &builder);
|
| bool ok = blender.blendAnimatedPath(fraction);
|
| ASSERT_UNUSED(ok, ok);
|
| - return AnimatablePath::create(StylePath::create(byteStream.release()));
|
| + return AnimatablePath::create(StylePath::create(std::move(byteStream)));
|
| }
|
|
|
| bool AnimatablePath::equalTo(const AnimatableValue* value) const
|
|
|