| Index: third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
|
| index 0a3374a63de5ecf68135104c05dd4f2ff3321ed6..dbfd5e849ce55cad7ca354f8825de9ea98600839 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
|
| @@ -39,7 +39,7 @@ class CSSTextIndentNonInterpolableValue : public NonInterpolableValue {
|
| public:
|
| static PassRefPtr<CSSTextIndentNonInterpolableValue> create(PassRefPtr<NonInterpolableValue> lengthNonInterpolableValue, const IndentMode& mode)
|
| {
|
| - return adoptRef(new CSSTextIndentNonInterpolableValue(lengthNonInterpolableValue, mode));
|
| + return adoptRef(new CSSTextIndentNonInterpolableValue(std::move(lengthNonInterpolableValue), mode));
|
| }
|
|
|
| const NonInterpolableValue* lengthNonInterpolableValue() const { return m_lengthNonInterpolableValue.get(); }
|
|
|