| Index: Source/core/html/HTMLBaseElement.h
|
| diff --git a/Source/core/html/HTMLBaseElement.h b/Source/core/html/HTMLBaseElement.h
|
| index 9b13ba6513968d7b3ec841ccd39c82c4d5f7e26c..89426522f8df3ded4ad88f8cc3f31674afa03533 100644
|
| --- a/Source/core/html/HTMLBaseElement.h
|
| +++ b/Source/core/html/HTMLBaseElement.h
|
| @@ -27,7 +27,7 @@
|
|
|
| namespace blink {
|
|
|
| -class HTMLBaseElement FINAL : public HTMLElement {
|
| +class HTMLBaseElement final : public HTMLElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(HTMLBaseElement);
|
| @@ -38,10 +38,10 @@ public:
|
| private:
|
| explicit HTMLBaseElement(Document&);
|
|
|
| - virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
|
| - virtual void removedFrom(ContainerNode*) OVERRIDE;
|
| + virtual bool isURLAttribute(const Attribute&) const override;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| + virtual void removedFrom(ContainerNode*) override;
|
| };
|
|
|
| } // namespace blink
|
|
|