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

Unified Diff: Source/core/svg/SVGAnimatedNumber.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/SVGAnimatedLengthList.h ('k') | Source/core/svg/SVGAnimatedNumber.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedNumber.h
diff --git a/Source/core/svg/SVGAnimatedNumber.h b/Source/core/svg/SVGAnimatedNumber.h
index 332790806e3a4444407e80849cc12a2c21c1f7bd..d71e6fd6cb3289776e50175a8226dd8d6b9302dd 100644
--- a/Source/core/svg/SVGAnimatedNumber.h
+++ b/Source/core/svg/SVGAnimatedNumber.h
@@ -32,14 +32,14 @@
#define SVGAnimatedNumber_h
#include "core/svg/SVGNumberTearOff.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+#include "core/svg/properties/SVGAnimatedProperty.h"
namespace WebCore {
class SVGAnimatedNumberOptionalNumber;
// SVG Spec: http://www.w3.org/TR/SVG11/types.html#InterfaceSVGAnimatedNumber
-class SVGAnimatedNumber : public NewSVGAnimatedProperty<SVGNumber> {
+class SVGAnimatedNumber : public SVGAnimatedProperty<SVGNumber> {
public:
static PassRefPtr<SVGAnimatedNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue)
{
@@ -55,7 +55,7 @@ public:
protected:
SVGAnimatedNumber(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue)
- : NewSVGAnimatedProperty<SVGNumber>(contextElement, attributeName, initialValue)
+ : SVGAnimatedProperty<SVGNumber>(contextElement, attributeName, initialValue)
, m_parentNumberOptionalNumber(0)
{
}
« no previous file with comments | « Source/core/svg/SVGAnimatedLengthList.h ('k') | Source/core/svg/SVGAnimatedNumber.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698