| Index: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| index 5a5c3753df8ee4417c65b7f6f9b34f87d5928fcc..e4f4efb95a1396a396e90fc3f8a63bab4a19e036 100644
|
| --- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| +++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| @@ -40,7 +40,7 @@ public:
|
|
|
| static std::unique_ptr<PairwisePrimitiveInterpolation> create(const InterpolationType& type, std::unique_ptr<InterpolableValue> start, std::unique_ptr<InterpolableValue> end, PassRefPtr<NonInterpolableValue> nonInterpolableValue)
|
| {
|
| - return wrapUnique(new PairwisePrimitiveInterpolation(type, std::move(start), std::move(end), nonInterpolableValue));
|
| + return wrapUnique(new PairwisePrimitiveInterpolation(type, std::move(start), std::move(end), std::move(nonInterpolableValue)));
|
| }
|
|
|
| const InterpolationType& type() const { return m_type; }
|
|
|