| Index: third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| index 7c1fbd98833a24235700e7d835283d66af92e520..c35a81a162244ba78a4ae6bb105f10770a67fe57 100644
|
| --- a/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| @@ -20,7 +20,7 @@ class FilterNonInterpolableValue : public NonInterpolableValue {
|
| public:
|
| static PassRefPtr<FilterNonInterpolableValue> create(FilterOperation::OperationType type, PassRefPtr<NonInterpolableValue> typeNonInterpolableValue)
|
| {
|
| - return adoptRef(new FilterNonInterpolableValue(type, typeNonInterpolableValue));
|
| + return adoptRef(new FilterNonInterpolableValue(type, std::move(typeNonInterpolableValue)));
|
| }
|
|
|
| FilterOperation::OperationType type() const { return m_type; }
|
|
|