| Index: third_party/WebKit/Source/core/svg/SVGString.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGString.cpp b/third_party/WebKit/Source/core/svg/SVGString.cpp
|
| index ee89a05a618f261a3b396ee081824aed5c5c1b58..f2b8329f781c56b1885ce5e2cb92cf5d6b9e6a45 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGString.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGString.cpp
|
| @@ -23,12 +23,12 @@
|
|
|
| namespace blink {
|
|
|
| -void SVGString::add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +void SVGString::add(RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> from, RawPtr<SVGPropertyBase> to, RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| ASSERT(animationElement);
|
|
|
| @@ -38,7 +38,7 @@ void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, fl
|
| animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
|
| }
|
|
|
| -float SVGString::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +float SVGString::calculateDistance(RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| // No paced animations for strings.
|
| return -1;
|
|
|