| Index: third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| index 48532bb6a0f0a574fdba4348e14fde0297e6dedc..6addd0dce0cc86eb3bd8b60a5aa6a01049e8d830 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| @@ -292,7 +292,7 @@ static CSSCalcExpressionNode* createCalcExpression(const InterpolableList& value
|
| for (size_t i = 0; i < CSSPrimitiveValue::LengthUnitTypeCount; i++) {
|
| double value = toInterpolableNumber(values.get(i))->value();
|
| if (value || (i == CSSPrimitiveValue::UnitTypePercentage && hasPercentage)) {
|
| - RawPtr<CSSCalcExpressionNode> node = CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(value, toUnitType(i)));
|
| + CSSCalcExpressionNode* node = CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(value, toUnitType(i)));
|
| result = result ? CSSCalcValue::createExpressionNode(result, node, CalcAdd) : node;
|
| }
|
| }
|
|
|