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

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

Powered by Google App Engine
This is Rietveld 408576698