| Index: Source/core/svg/SVGFontFaceUriElement.h
|
| diff --git a/Source/core/svg/SVGFontFaceUriElement.h b/Source/core/svg/SVGFontFaceUriElement.h
|
| index 3aea1484d344bbf2864f08621e4b29c74f447989..99ded6fb3498a8bc148d0e22824e63c788161751 100644
|
| --- a/Source/core/svg/SVGFontFaceUriElement.h
|
| +++ b/Source/core/svg/SVGFontFaceUriElement.h
|
| @@ -30,7 +30,7 @@ namespace blink {
|
|
|
| class CSSFontFaceSrcValue;
|
|
|
| -class SVGFontFaceUriElement FINAL : public SVGElement, public FontResourceClient {
|
| +class SVGFontFaceUriElement final : public SVGElement, public FontResourceClient {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(SVGFontFaceUriElement);
|
| @@ -42,11 +42,11 @@ public:
|
| private:
|
| explicit SVGFontFaceUriElement(Document&);
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
|
| - virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual void childrenChanged(const ChildrenChange&) override;
|
| + virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
|
|
| - virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
|
| + virtual bool rendererIsNeeded(const RenderStyle&) override { return false; }
|
|
|
| void loadFont();
|
|
|
|
|