| Index: Source/core/animation/ColorStyleInterpolation.cpp
|
| diff --git a/Source/core/animation/ColorStyleInterpolation.cpp b/Source/core/animation/ColorStyleInterpolation.cpp
|
| index 5c9a618bafc0d4ceef9d5cbc5d1856cf59595e89..b97eb87148404fc04af20e54f6a2821a649ec56b 100644
|
| --- a/Source/core/animation/ColorStyleInterpolation.cpp
|
| +++ b/Source/core/animation/ColorStyleInterpolation.cpp
|
| @@ -25,7 +25,7 @@ bool ColorStyleInterpolation::canCreateFrom(const CSSValue& value)
|
| PassOwnPtrWillBeRawPtr<InterpolableValue> ColorStyleInterpolation::colorToInterpolableValue(const CSSValue& value)
|
| {
|
| ASSERT(value.isPrimitiveValue());
|
| - const CSSPrimitiveValue& primitive = toCSSPrimitiveValue(value);
|
| + const CSSPrimitiveValue primitive = toCSSPrimitiveValue(value);
|
| RGBA32 color;
|
| if (primitive.isValueID()) {
|
| if (CSSPropertyParser::isSystemColor(primitive.getValueID())) {
|
| @@ -50,7 +50,7 @@ PassOwnPtrWillBeRawPtr<InterpolableValue> ColorStyleInterpolation::colorToInterp
|
| return list->clone();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSPrimitiveValue> ColorStyleInterpolation::interpolableValueToColor(const InterpolableValue& value)
|
| +CSSPrimitiveValue ColorStyleInterpolation::interpolableValueToColor(const InterpolableValue& value)
|
| {
|
| ASSERT(value.isList());
|
| const InterpolableList* list = toInterpolableList(&value);
|
|
|