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

Unified Diff: Source/core/svg/SVGAnimatedEnumerationBase.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/SVGAnimatedColor.cpp ('k') | Source/core/svg/SVGAnimatedInteger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedEnumerationBase.h
diff --git a/Source/core/svg/SVGAnimatedEnumerationBase.h b/Source/core/svg/SVGAnimatedEnumerationBase.h
index 16a8bd119565c3839dbb464e1e121ef5b810f8df..ea5ffa0631e8a796e5b5fc8695c78a7f0a20c3d7 100644
--- a/Source/core/svg/SVGAnimatedEnumerationBase.h
+++ b/Source/core/svg/SVGAnimatedEnumerationBase.h
@@ -32,11 +32,11 @@
#define SVGAnimatedEnumerationBase_h
#include "core/svg/SVGEnumeration.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+#include "core/svg/properties/SVGAnimatedProperty.h"
namespace WebCore {
-class SVGAnimatedEnumerationBase : public NewSVGAnimatedProperty<SVGEnumerationBase> {
+class SVGAnimatedEnumerationBase : public SVGAnimatedProperty<SVGEnumerationBase> {
public:
virtual ~SVGAnimatedEnumerationBase();
@@ -44,7 +44,7 @@ public:
protected:
SVGAnimatedEnumerationBase(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumerationBase> initialValue)
- : NewSVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue)
+ : SVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue)
{
}
};
« no previous file with comments | « Source/core/svg/SVGAnimatedColor.cpp ('k') | Source/core/svg/SVGAnimatedInteger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698