| Index: third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| index 577758078031147886d9ba62aa690f1bba12e8ae..97c3e9ce74ced8f58dd7c1a430e8b425d80fddeb 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| @@ -18,7 +18,7 @@ void CSSPathInterpolationType::apply(const InterpolableValue& interpolableValue,
|
| environment.state().style()->setD(nullptr);
|
| return;
|
| }
|
| - environment.state().style()->setD(StylePath::create(pathByteStream.release()));
|
| + environment.state().style()->setD(StylePath::create(std::move(pathByteStream)));
|
| }
|
|
|
| void CSSPathInterpolationType::composite(UnderlyingValueOwner& underlyingValueOwner, double underlyingFraction, const InterpolationValue& value, double interpolationFraction) const
|
|
|