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

Unified Diff: Source/core/svg/SVGAnimatedString.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/SVGAnimatedRect.h ('k') | Source/core/svg/SVGAnimatedTransformList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedString.h
diff --git a/Source/core/svg/SVGAnimatedString.h b/Source/core/svg/SVGAnimatedString.h
index f8e5d21fb77988a6c35340fe14fc5ba49990faa6..008d5bc221da561abd3fb48a7826cd3406c1017f 100644
--- a/Source/core/svg/SVGAnimatedString.h
+++ b/Source/core/svg/SVGAnimatedString.h
@@ -32,11 +32,11 @@
#define SVGAnimatedString_h
#include "core/svg/SVGString.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+#include "core/svg/properties/SVGAnimatedProperty.h"
namespace WebCore {
-class SVGAnimatedString FINAL : public NewSVGAnimatedProperty<SVGString> {
+class SVGAnimatedString FINAL : public SVGAnimatedProperty<SVGString> {
public:
static PassRefPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue)
{
@@ -45,7 +45,7 @@ public:
protected:
SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue)
- : NewSVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)
+ : SVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)
{
}
};
« no previous file with comments | « Source/core/svg/SVGAnimatedRect.h ('k') | Source/core/svg/SVGAnimatedTransformList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698