| Index: third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| index 3de04d28f1f60015af415c5470e4085021a7ce6f..2ddcd5391d3fd7fab0398d26dc386c6aaf8c1318 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| @@ -151,19 +151,19 @@ bool SVGStringList::checkIndexBound(size_t index, ExceptionState& exceptionState
|
| return true;
|
| }
|
|
|
| -void SVGStringList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
|
| +void SVGStringList::add(RawPtr<SVGPropertyBase> other, SVGElement* contextElement)
|
| {
|
| // SVGStringList is never animated.
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -void SVGStringList::calculateAnimatedValue(SVGAnimationElement*, float, unsigned, PassRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +void SVGStringList::calculateAnimatedValue(SVGAnimationElement*, float, unsigned, RawPtr<SVGPropertyBase>, RawPtr<SVGPropertyBase>, RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| // SVGStringList is never animated.
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -float SVGStringList::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +float SVGStringList::calculateDistance(RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| // SVGStringList is never animated.
|
| ASSERT_NOT_REACHED();
|
|
|