| Index: third_party/WebKit/Source/core/animation/InterpolationType.h
|
| diff --git a/third_party/WebKit/Source/core/animation/InterpolationType.h b/third_party/WebKit/Source/core/animation/InterpolationType.h
|
| index e502462c543afa2f2db4a422410eb571dd828c7d..68ddba1c75f77c5250b716c635c7c4a106bc7ad3 100644
|
| --- a/third_party/WebKit/Source/core/animation/InterpolationType.h
|
| +++ b/third_party/WebKit/Source/core/animation/InterpolationType.h
|
| @@ -86,8 +86,8 @@ protected:
|
| ASSERT(!start.nonInterpolableValue);
|
| ASSERT(!end.nonInterpolableValue);
|
| return PairwiseInterpolationValue(
|
| - start.interpolableValue.release(),
|
| - end.interpolableValue.release(),
|
| + std::move(start.interpolableValue),
|
| + std::move(end.interpolableValue),
|
| nullptr);
|
| }
|
|
|
|
|