| Index: Source/core/html/HTMLUListElement.h
|
| diff --git a/Source/core/html/HTMLUListElement.h b/Source/core/html/HTMLUListElement.h
|
| index 5af6d8b746c2ff9e8fd1fedd5e7048a8d7912989..76cf90dceffb9bad44fb8bf5a03e75297df4852a 100644
|
| --- a/Source/core/html/HTMLUListElement.h
|
| +++ b/Source/core/html/HTMLUListElement.h
|
| @@ -27,7 +27,7 @@
|
|
|
| namespace blink {
|
|
|
| -class HTMLUListElement FINAL : public HTMLElement {
|
| +class HTMLUListElement final : public HTMLElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(HTMLUListElement);
|
| @@ -35,8 +35,8 @@ public:
|
| private:
|
| explicit HTMLUListElement(Document&);
|
|
|
| - virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
| - virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
| + virtual bool isPresentationAttribute(const QualifiedName&) const override;
|
| + virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
|
| };
|
|
|
| } // namespace blink
|
|
|