| Index: third_party/WebKit/Source/core/animation/SizeInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SizeInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/SizeInterpolationFunctions.cpp
|
| index 7fcfb3ed6a3ec3a236f2bf1690bd3011ccef62e4..18c2a1b24e1e355e93f77c9100fef1b4585eedd0 100644
|
| --- a/third_party/WebKit/Source/core/animation/SizeInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SizeInterpolationFunctions.cpp
|
| @@ -50,7 +50,7 @@ class CSSSizeNonInterpolableValue : public NonInterpolableValue {
|
| CSSSizeNonInterpolableValue(
|
| PassRefPtr<NonInterpolableValue> lengthNonInterpolableValue)
|
| : m_keyword(CSSValueInvalid),
|
| - m_lengthNonInterpolableValue(lengthNonInterpolableValue) {}
|
| + m_lengthNonInterpolableValue(std::move(lengthNonInterpolableValue)) {}
|
|
|
| CSSValueID m_keyword;
|
| RefPtr<NonInterpolableValue> m_lengthNonInterpolableValue;
|
|
|