| Index: third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| index 388d58b5755d970b23cf0b508b8048de6654c8ca..76581ae94baefd491f0a33a9cf3423ba17e357fb 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| @@ -77,9 +77,9 @@ InterpolationValue CSSFontSizeInterpolationType::maybeConvertInherit(const Style
|
|
|
| InterpolationValue CSSFontSizeInterpolationType::maybeConvertValue(const CSSValue& value, const StyleResolverState& state, ConversionCheckers& conversionCheckers) const
|
| {
|
| - OwnPtr<InterpolableValue> result = CSSLengthInterpolationType::maybeConvertCSSValue(value).interpolableValue.release();
|
| + OwnPtr<InterpolableValue> result = CSSLengthInterpolationType::maybeConvertCSSValue(value).interpolableValue;
|
| if (result)
|
| - return InterpolationValue(result.release());
|
| + return InterpolationValue(std::move(result));
|
|
|
| if (!value.isPrimitiveValue() || !toCSSPrimitiveValue(value).isValueID())
|
| return nullptr;
|
|
|