| Index: Source/core/html/HTMLLIElement.h
|
| diff --git a/Source/core/html/HTMLLIElement.h b/Source/core/html/HTMLLIElement.h
|
| index f469075d5e9cdd34249e9587e3a441a4a0158192..d5706675d3e94e1fdafb64aea5db71450e763727 100644
|
| --- a/Source/core/html/HTMLLIElement.h
|
| +++ b/Source/core/html/HTMLLIElement.h
|
| @@ -27,7 +27,7 @@
|
|
|
| namespace blink {
|
|
|
| -class HTMLLIElement FINAL : public HTMLElement {
|
| +class HTMLLIElement final : public HTMLElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(HTMLLIElement);
|
| @@ -35,11 +35,11 @@ public:
|
| private:
|
| explicit HTMLLIElement(Document&);
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
| - virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual bool isPresentationAttribute(const QualifiedName&) const override;
|
| + virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
|
|
|
| - virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
|
| + virtual void attach(const AttachContext& = AttachContext()) override;
|
|
|
| void parseValue(const AtomicString&);
|
| };
|
|
|