Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGAnimatedNumberOptionalNumber.h
index bc6e4b7..302a403 100644 (file)
@@ -34,7 +34,7 @@
 #include "core/svg/SVGAnimatedNumber.h"
 #include "core/svg/SVGNumberOptionalNumber.h"
 
-namespace WebCore {
+namespace blink {
 
 // SVG Spec: http://www.w3.org/TR/SVG11/types.html <number-optional-number>
 // Unlike other SVGAnimated* class, this class is not exposed to Javascript directly,
@@ -48,10 +48,9 @@ public:
         return adoptRef(new SVGAnimatedNumberOptionalNumber(contextElement, attributeName, initialFirstValue, initialSecondValue));
     }
 
-    virtual void animationStarted() OVERRIDE;
-    virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) OVERRIDE;
-    virtual bool needsSynchronizeAttribute() OVERRIDE;
-    virtual void animationEnded() OVERRIDE;
+    virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) override;
+    virtual bool needsSynchronizeAttribute() override;
+    virtual void animationEnded() override;
 
     SVGAnimatedNumber* firstNumber() { return m_firstNumber.get(); }
     SVGAnimatedNumber* secondNumber() { return m_secondNumber.get(); }
@@ -63,6 +62,6 @@ protected:
     RefPtr<SVGAnimatedNumber> m_secondNumber;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // SVGAnimatedNumberOptionalNumber_h