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

Unified Diff: Source/core/svg/SVGPointListTearOff.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/SVGPointList.cpp ('k') | Source/core/svg/SVGPointTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPointListTearOff.h
diff --git a/Source/core/svg/SVGPointListTearOff.h b/Source/core/svg/SVGPointListTearOff.h
index c7a6319b327559ba5e39c6b725ebc8946b6bc677..31f6ba98790a6e4163793960e80c363c455a8442 100644
--- a/Source/core/svg/SVGPointListTearOff.h
+++ b/Source/core/svg/SVGPointListTearOff.h
@@ -32,12 +32,12 @@
#define SVGPointListTearOff_h
#include "core/svg/SVGPointList.h"
-#include "core/svg/properties/NewSVGListPropertyTearOffHelper.h"
+#include "core/svg/properties/SVGListPropertyTearOffHelper.h"
namespace WebCore {
class SVGPointListTearOff FINAL :
- public NewSVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>,
+ public SVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>,
public ScriptWrappable {
public:
static PassRefPtr<SVGPointListTearOff> create(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
@@ -47,7 +47,7 @@ public:
private:
SVGPointListTearOff(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
- : NewSVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>(target, contextElement, propertyIsAnimVal, attributeName)
+ : SVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>(target, contextElement, propertyIsAnimVal, attributeName)
{
ScriptWrappable::init(this);
}
« no previous file with comments | « Source/core/svg/SVGPointList.cpp ('k') | Source/core/svg/SVGPointTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698