| Index: Source/core/svg/SVGStaticStringList.cpp
|
| diff --git a/Source/core/svg/SVGStaticStringList.cpp b/Source/core/svg/SVGStaticStringList.cpp
|
| index 73077d73b3f951059ae5e882ee82e43cd2c083d4..be190d6ba020d0e1bf90edd5e5d61a31423b1c27 100644
|
| --- a/Source/core/svg/SVGStaticStringList.cpp
|
| +++ b/Source/core/svg/SVGStaticStringList.cpp
|
| @@ -34,7 +34,7 @@
|
| namespace WebCore {
|
|
|
| SVGStaticStringList::SVGStaticStringList(SVGElement* contextElement, const QualifiedName& attributeName)
|
| - : NewSVGAnimatedPropertyBase(AnimatedStringList, contextElement, attributeName)
|
| + : SVGAnimatedPropertyBase(AnimatedStringList, contextElement, attributeName)
|
| , m_value(SVGStringList::create())
|
| {
|
| ASSERT(contextElement);
|
| @@ -44,7 +44,7 @@ SVGStaticStringList::~SVGStaticStringList()
|
| {
|
| }
|
|
|
| -NewSVGPropertyBase* SVGStaticStringList::currentValueBase()
|
| +SVGPropertyBase* SVGStaticStringList::currentValueBase()
|
| {
|
| return m_value.get();
|
| }
|
| @@ -54,13 +54,13 @@ void SVGStaticStringList::animationStarted()
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -PassRefPtr<NewSVGPropertyBase> SVGStaticStringList::createAnimatedValue()
|
| +PassRefPtr<SVGPropertyBase> SVGStaticStringList::createAnimatedValue()
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
| }
|
|
|
| -void SVGStaticStringList::setAnimatedValue(PassRefPtr<NewSVGPropertyBase>)
|
| +void SVGStaticStringList::setAnimatedValue(PassRefPtr<SVGPropertyBase>)
|
| {
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|