Index: Source/core/svg/SVGFontFaceFormatElement.h |
diff --git a/Source/core/svg/SVGFontFaceFormatElement.h b/Source/core/svg/SVGFontFaceFormatElement.h |
index 7270ed9ce0bfd980aa9284d39d218e5281f03c7e..415e13d60c05f0e3eea47da3d853577bca1ba7ce 100644 |
--- a/Source/core/svg/SVGFontFaceFormatElement.h |
+++ b/Source/core/svg/SVGFontFaceFormatElement.h |
@@ -25,7 +25,7 @@ |
namespace blink { |
-class SVGFontFaceFormatElement FINAL : public SVGElement { |
+class SVGFontFaceFormatElement final : public SVGElement { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
DECLARE_NODE_FACTORY(SVGFontFaceFormatElement); |
@@ -33,8 +33,8 @@ public: |
private: |
explicit SVGFontFaceFormatElement(Document&); |
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE; |
- virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; } |
+ virtual void childrenChanged(const ChildrenChange&) override; |
+ virtual bool rendererIsNeeded(const RenderStyle&) override { return false; } |
}; |
} // namespace blink |