| Index: Source/core/animation/ListStyleInterpolation.h
|
| diff --git a/Source/core/animation/ListStyleInterpolation.h b/Source/core/animation/ListStyleInterpolation.h
|
| index 014883274edd8d1894a8ba004c629d8b0dd47d3a..4553a58b75412875c185c99e46e6586331d35835 100644
|
| --- a/Source/core/animation/ListStyleInterpolation.h
|
| +++ b/Source/core/animation/ListStyleInterpolation.h
|
| @@ -70,10 +70,10 @@ private:
|
| return result.release();
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, const Vector<typename InterpolationType::NonInterpolableType>& nonInterpolableData, InterpolationRange range = RangeAll)
|
| + static PassRefPtr<CSSValue> interpolableValueToList(InterpolableValue* value, const Vector<typename InterpolationType::NonInterpolableType>& nonInterpolableData, InterpolationRange range = RangeAll)
|
| {
|
| InterpolableList* listValue = toInterpolableList(value);
|
| - RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
| + RefPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
|
|
| ASSERT(nonInterpolableData.size() == listValue->length());
|
|
|
| @@ -124,10 +124,10 @@ private:
|
| return result.release();
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, InterpolationRange range = RangeAll)
|
| + static PassRefPtr<CSSValue> interpolableValueToList(InterpolableValue* value, InterpolationRange range = RangeAll)
|
| {
|
| InterpolableList* listValue = toInterpolableList(value);
|
| - RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
| + RefPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
|
|
| for (size_t i = 0; i < listValue->length(); i++)
|
| result->append(InterpolationType::fromInterpolableValue(*(listValue->get(i)), range));
|
|
|