| Index: third_party/WebKit/Source/core/animation/ListStyleInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/ListStyleInterpolation.h b/third_party/WebKit/Source/core/animation/ListStyleInterpolation.h
|
| index 1ea18a9b48aa2daeba802fa2e7f4bbcc1161ba07..cfe417b640db44429ad28876606c43004a725e0e 100644
|
| --- a/third_party/WebKit/Source/core/animation/ListStyleInterpolation.h
|
| +++ b/third_party/WebKit/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 RawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, const Vector<typename InterpolationType::NonInterpolableType>& nonInterpolableData, InterpolationRange range = RangeAll)
|
| {
|
| InterpolableList* listValue = toInterpolableList(value);
|
| - RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
| + RawPtr<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 RawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, InterpolationRange range = RangeAll)
|
| {
|
| InterpolableList* listValue = toInterpolableList(value);
|
| - RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
| + RawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
|
|
|
| for (size_t i = 0; i < listValue->length(); i++)
|
| result->append(InterpolationType::fromInterpolableValue(*(listValue->get(i)), range));
|
|
|