Index: Source/core/svg/SVGRectElement.h |
diff --git a/Source/core/svg/SVGRectElement.h b/Source/core/svg/SVGRectElement.h |
index 4eada17f7c656b4d56a86fc18cd8f4a6c580ccf2..d38ba57056759df14ef65111b579b3c1a18325c5 100644 |
--- a/Source/core/svg/SVGRectElement.h |
+++ b/Source/core/svg/SVGRectElement.h |
@@ -28,7 +28,7 @@ |
namespace blink { |
-class SVGRectElement FINAL : public SVGGeometryElement { |
+class SVGRectElement final : public SVGGeometryElement { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
DECLARE_NODE_FACTORY(SVGRectElement); |
@@ -44,12 +44,12 @@ private: |
explicit SVGRectElement(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 bool selfHasRelativeLengths() const OVERRIDE; |
+ virtual bool selfHasRelativeLengths() const override; |
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
+ virtual RenderObject* createRenderer(RenderStyle*) override; |
RefPtr<SVGAnimatedLength> m_x; |
RefPtr<SVGAnimatedLength> m_y; |