| Index: Source/core/svg/SVGAnimatedEnumerationBase.h
|
| diff --git a/Source/core/svg/SVGAnimatedEnumerationBase.h b/Source/core/svg/SVGAnimatedEnumerationBase.h
|
| index 16a8bd119565c3839dbb464e1e121ef5b810f8df..ea5ffa0631e8a796e5b5fc8695c78a7f0a20c3d7 100644
|
| --- a/Source/core/svg/SVGAnimatedEnumerationBase.h
|
| +++ b/Source/core/svg/SVGAnimatedEnumerationBase.h
|
| @@ -32,11 +32,11 @@
|
| #define SVGAnimatedEnumerationBase_h
|
|
|
| #include "core/svg/SVGEnumeration.h"
|
| -#include "core/svg/properties/NewSVGAnimatedProperty.h"
|
| +#include "core/svg/properties/SVGAnimatedProperty.h"
|
|
|
| namespace WebCore {
|
|
|
| -class SVGAnimatedEnumerationBase : public NewSVGAnimatedProperty<SVGEnumerationBase> {
|
| +class SVGAnimatedEnumerationBase : public SVGAnimatedProperty<SVGEnumerationBase> {
|
| public:
|
| virtual ~SVGAnimatedEnumerationBase();
|
|
|
| @@ -44,7 +44,7 @@ public:
|
|
|
| protected:
|
| SVGAnimatedEnumerationBase(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumerationBase> initialValue)
|
| - : NewSVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue)
|
| + : SVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue)
|
| {
|
| }
|
| };
|
|
|