Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGStopElement.h
index e89f101..633e983 100644 (file)
@@ -27,7 +27,8 @@
 
 namespace blink {
 
-class SVGStopElement FINAL : public SVGElement {
+class SVGStopElement final : public SVGElement {
+    DEFINE_WRAPPERTYPEINFO();
 public:
     DECLARE_NODE_FACTORY(SVGStopElement);
 
@@ -38,16 +39,15 @@ public:
 private:
     explicit SVGStopElement(Document&);
 
-    bool isSupportedAttribute(const QualifiedName&);
-    virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
-    virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
+    virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+    virtual void svgAttributeChanged(const QualifiedName&) override;
 
-    virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
-    virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
+    virtual RenderObject* createRenderer(RenderStyle*) override;
+    virtual bool rendererIsNeeded(const RenderStyle&) override;
 
     RefPtr<SVGAnimatedNumber> m_offset;
 };
 
 } // namespace blink
 
-#endif
+#endif // SVGStopElement_h