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

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

Powered by Google App Engine
This is Rietveld 408576698