Index: Source/core/svg/SVGPatternElement.h |
diff --git a/Source/core/svg/SVGPatternElement.h b/Source/core/svg/SVGPatternElement.h |
index 8d36d272a2b2792d77fe58a3ee48b5e0f2c0aa93..192f953d3a4b612d396d109bfc1bfe9c4dfa4296 100644 |
--- a/Source/core/svg/SVGPatternElement.h |
+++ b/Source/core/svg/SVGPatternElement.h |
@@ -36,7 +36,7 @@ namespace blink { |
struct PatternAttributes; |
-class SVGPatternElement FINAL : public SVGElement, |
+class SVGPatternElement final : public SVGElement, |
public SVGURIReference, |
public SVGTests, |
public SVGFitToViewBox { |
@@ -46,7 +46,7 @@ public: |
void collectPatternAttributes(PatternAttributes&) const; |
- virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const OVERRIDE; |
+ virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const override; |
SVGAnimatedLength* x() const { return m_x.get(); } |
SVGAnimatedLength* y() const { return m_y.get(); } |
@@ -62,17 +62,17 @@ public: |
private: |
explicit SVGPatternElement(Document&); |
- virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); } |
- virtual bool needsPendingResourceHandling() const OVERRIDE { return false; } |
+ virtual bool isValid() const override { return SVGTests::isValid(); } |
+ virtual bool needsPendingResourceHandling() const override { return false; } |
bool isSupportedAttribute(const QualifiedName&); |
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; |
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE; |
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override; |
+ virtual void svgAttributeChanged(const QualifiedName&) override; |
+ virtual void childrenChanged(const ChildrenChange&) override; |
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
+ virtual RenderObject* createRenderer(RenderStyle*) override; |
- virtual bool selfHasRelativeLengths() const OVERRIDE; |
+ virtual bool selfHasRelativeLengths() const override; |
RefPtr<SVGAnimatedLength> m_x; |
RefPtr<SVGAnimatedLength> m_y; |