Index: Source/core/svg/SVGPointListTearOff.h |
diff --git a/Source/core/svg/SVGLengthListTearOff.h b/Source/core/svg/SVGPointListTearOff.h |
similarity index 67% |
copy from Source/core/svg/SVGLengthListTearOff.h |
copy to Source/core/svg/SVGPointListTearOff.h |
index b28dc8c94e6171147890fb606b6d1c0e53bed86f..c7a6319b327559ba5e39c6b725ebc8946b6bc677 100644 |
--- a/Source/core/svg/SVGLengthListTearOff.h |
+++ b/Source/core/svg/SVGPointListTearOff.h |
@@ -28,26 +28,26 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-#ifndef SVGLengthListTearOff_h |
-#define SVGLengthListTearOff_h |
+#ifndef SVGPointListTearOff_h |
+#define SVGPointListTearOff_h |
-#include "core/svg/SVGLengthList.h" |
+#include "core/svg/SVGPointList.h" |
#include "core/svg/properties/NewSVGListPropertyTearOffHelper.h" |
namespace WebCore { |
-class SVGLengthListTearOff FINAL : |
- public NewSVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>, |
+class SVGPointListTearOff FINAL : |
+ public NewSVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>, |
public ScriptWrappable { |
public: |
- static PassRefPtr<SVGLengthListTearOff> create(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) |
+ static PassRefPtr<SVGPointListTearOff> create(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) |
{ |
- return adoptRef(new SVGLengthListTearOff(target, contextElement, propertyIsAnimVal, attributeName)); |
+ return adoptRef(new SVGPointListTearOff(target, contextElement, propertyIsAnimVal, attributeName)); |
} |
private: |
- SVGLengthListTearOff(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) |
- : NewSVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>(target, contextElement, propertyIsAnimVal, attributeName) |
+ SVGPointListTearOff(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) |
+ : NewSVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>(target, contextElement, propertyIsAnimVal, attributeName) |
{ |
ScriptWrappable::init(this); |
} |
@@ -55,4 +55,4 @@ private: |
} // namespace WebCore |
-#endif // SVGLengthListTearOff_h_ |
+#endif // SVGPointListTearOff_h_ |