| Index: Source/core/svg/SVGLengthListTearOff.h
|
| diff --git a/Source/core/svg/SVGLengthListTearOff.h b/Source/core/svg/SVGLengthListTearOff.h
|
| index b28dc8c94e6171147890fb606b6d1c0e53bed86f..c3989f63bcbe49eabd0632132abdbfa9f7f9a92c 100644
|
| --- a/Source/core/svg/SVGLengthListTearOff.h
|
| +++ b/Source/core/svg/SVGLengthListTearOff.h
|
| @@ -32,12 +32,12 @@
|
| #define SVGLengthListTearOff_h
|
|
|
| #include "core/svg/SVGLengthList.h"
|
| -#include "core/svg/properties/NewSVGListPropertyTearOffHelper.h"
|
| +#include "core/svg/properties/SVGListPropertyTearOffHelper.h"
|
|
|
| namespace WebCore {
|
|
|
| class SVGLengthListTearOff FINAL :
|
| - public NewSVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>,
|
| + public SVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>,
|
| public ScriptWrappable {
|
| public:
|
| static PassRefPtr<SVGLengthListTearOff> create(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
|
| @@ -47,7 +47,7 @@ public:
|
|
|
| private:
|
| SVGLengthListTearOff(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
|
| - : NewSVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>(target, contextElement, propertyIsAnimVal, attributeName)
|
| + : SVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>(target, contextElement, propertyIsAnimVal, attributeName)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|