Index: Source/core/animation/SVGStrokeDasharrayStyleInterpolation.cpp |
diff --git a/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.cpp b/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.cpp |
index ffb4822c9f0c4f9d61343d26f8463ef58039106b..11de851788f180b7db1af4fa7cb4c5a7efd3fc0c 100644 |
--- a/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.cpp |
+++ b/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.cpp |
@@ -25,11 +25,11 @@ bool isNone(const CSSValue& value) |
} // namespace |
-PassRefPtrWillBeRawPtr<CSSValueList> SVGStrokeDasharrayStyleInterpolation::interpolableValueToStrokeDasharray(const InterpolableValue& interpolableValue) |
+PassRefPtr<CSSValueList> SVGStrokeDasharrayStyleInterpolation::interpolableValueToStrokeDasharray(const InterpolableValue& interpolableValue) |
{ |
const InterpolableList& interpolableList = toInterpolableList(interpolableValue); |
- RefPtrWillBeRawPtr<CSSValueList> ret = CSSValueList::createCommaSeparated(); |
+ RefPtr<CSSValueList> ret = CSSValueList::createCommaSeparated(); |
for (size_t index = 0; index < interpolableList.length(); ++index) |
ret->append(LengthStyleInterpolation::fromInterpolableValue(*interpolableList.get(index), RangeNonNegative)); |
return ret.release(); |
@@ -53,7 +53,7 @@ PassRefPtrWillBeRawPtr<SVGStrokeDasharrayStyleInterpolation> SVGStrokeDasharrayS |
if (!canCreateFrom(start) || !canCreateFrom(end)) |
return nullptr; |
- RefPtrWillBeRawPtr<CSSValueList> singleZero = CSSValueList::createCommaSeparated(); |
+ RefPtr<CSSValueList> singleZero = CSSValueList::createCommaSeparated(); |
singleZero->append(CSSPrimitiveValue::create(0, CSSPrimitiveValue::UnitType::Pixels)); |
const CSSValueList& valueListStart = start.isValueList() ? toCSSValueList(start) : *singleZero; |