Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1682)

Unified Diff: Source/core/svg/SVGPathSegListTearOff.h

Issue 208133002: [SVG] Remove "New" prefix from properties implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGPathSegList.cpp ('k') | Source/core/svg/SVGPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegListTearOff.h
diff --git a/Source/core/svg/SVGPathSegListTearOff.h b/Source/core/svg/SVGPathSegListTearOff.h
index a18a37347fe235ca66334a9a34ae286ba6164e87..f360f34fca57a23e7a83fd95d0238573f0afad1c 100644
--- a/Source/core/svg/SVGPathSegListTearOff.h
+++ b/Source/core/svg/SVGPathSegListTearOff.h
@@ -32,7 +32,7 @@
#define SVGPathSegListTearOff_h
#include "core/svg/SVGPathSegList.h"
-#include "core/svg/properties/NewSVGListPropertyTearOffHelper.h"
+#include "core/svg/properties/SVGListPropertyTearOffHelper.h"
namespace WebCore {
@@ -57,7 +57,7 @@ public:
};
class SVGPathSegListTearOff FINAL :
- public NewSVGListPropertyTearOffHelper<SVGPathSegListTearOff, SVGPathSegList>,
+ public SVGListPropertyTearOffHelper<SVGPathSegListTearOff, SVGPathSegList>,
public ScriptWrappable {
public:
static PassRefPtr<SVGPathSegListTearOff> create(PassRefPtr<SVGPathSegList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
@@ -67,7 +67,7 @@ public:
private:
SVGPathSegListTearOff(PassRefPtr<SVGPathSegList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
- : NewSVGListPropertyTearOffHelper<SVGPathSegListTearOff, SVGPathSegList>(target, contextElement, propertyIsAnimVal, attributeName)
+ : SVGListPropertyTearOffHelper<SVGPathSegListTearOff, SVGPathSegList>(target, contextElement, propertyIsAnimVal, attributeName)
{
ScriptWrappable::init(this);
}
« no previous file with comments | « Source/core/svg/SVGPathSegList.cpp ('k') | Source/core/svg/SVGPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698