| Index: third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| index 4ac573a3be86d23181237fedd371cc7ca6e9ae1b..4ed5794980dee505ab28373dac34553f445d97a7 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| @@ -21,7 +21,7 @@ class UnderlyingCompatibilityChecker : public InterpolationType::ConversionCheck
|
| public:
|
| static std::unique_ptr<UnderlyingCompatibilityChecker> create(PassRefPtr<NonInterpolableValue> underlyingNonInterpolableValue)
|
| {
|
| - return wrapUnique(new UnderlyingCompatibilityChecker(underlyingNonInterpolableValue));
|
| + return wrapUnique(new UnderlyingCompatibilityChecker(std::move(underlyingNonInterpolableValue)));
|
| }
|
|
|
| private:
|
| @@ -41,7 +41,7 @@ class InheritedShapeChecker : public InterpolationType::ConversionChecker {
|
| public:
|
| static std::unique_ptr<InheritedShapeChecker> create(CSSPropertyID property, PassRefPtr<BasicShape> inheritedShape)
|
| {
|
| - return wrapUnique(new InheritedShapeChecker(property, inheritedShape));
|
| + return wrapUnique(new InheritedShapeChecker(property, std::move(inheritedShape)));
|
| }
|
|
|
| private:
|
|
|