Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGAnimatedNumber.h
index 3327908..43cf822 100644 (file)
 #define SVGAnimatedNumber_h
 
 #include "core/svg/SVGNumberTearOff.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+#include "core/svg/properties/SVGAnimatedProperty.h"
 
-namespace WebCore {
+namespace blink {
 
 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)
     {
         return adoptRef(new SVGAnimatedNumber(contextElement, attributeName, initialValue));
     }
 
-    virtual void synchronizeAttribute() OVERRIDE;
+    virtual void synchronizeAttribute() override;
 
     void setParentOptionalNumber(SVGAnimatedNumberOptionalNumber* numberOptionalNumber)
     {
@@ -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)
     {
     }
@@ -64,6 +64,6 @@ protected:
     SVGAnimatedNumberOptionalNumber* m_parentNumberOptionalNumber;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // SVGAnimatedNumber_h