| Index: Source/core/svg/SVGAnimatedString.h
|
| diff --git a/Source/core/svg/SVGAnimatedString.h b/Source/core/svg/SVGAnimatedString.h
|
| index f8e5d21fb77988a6c35340fe14fc5ba49990faa6..008d5bc221da561abd3fb48a7826cd3406c1017f 100644
|
| --- a/Source/core/svg/SVGAnimatedString.h
|
| +++ b/Source/core/svg/SVGAnimatedString.h
|
| @@ -32,11 +32,11 @@
|
| #define SVGAnimatedString_h
|
|
|
| #include "core/svg/SVGString.h"
|
| -#include "core/svg/properties/NewSVGAnimatedProperty.h"
|
| +#include "core/svg/properties/SVGAnimatedProperty.h"
|
|
|
| namespace WebCore {
|
|
|
| -class SVGAnimatedString FINAL : public NewSVGAnimatedProperty<SVGString> {
|
| +class SVGAnimatedString FINAL : public SVGAnimatedProperty<SVGString> {
|
| public:
|
| static PassRefPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue)
|
| {
|
| @@ -45,7 +45,7 @@ public:
|
|
|
| protected:
|
| SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue)
|
| - : NewSVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)
|
| + : SVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)
|
| {
|
| }
|
| };
|
|
|