| Index: Source/core/html/HTMLDataListElement.h
|
| diff --git a/Source/core/html/HTMLDataListElement.h b/Source/core/html/HTMLDataListElement.h
|
| index f9ce2d67a12e80b29ea293efc6388e5aecf005a0..b035afd9ee71254e2ccda26d14e11f936ae4388b 100644
|
| --- a/Source/core/html/HTMLDataListElement.h
|
| +++ b/Source/core/html/HTMLDataListElement.h
|
| @@ -38,7 +38,7 @@ namespace blink {
|
|
|
| class HTMLDataListOptionsCollection;
|
|
|
| -class HTMLDataListElement FINAL : public HTMLElement {
|
| +class HTMLDataListElement final : public HTMLElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtrWillBeRawPtr<HTMLDataListElement> create(Document&);
|
| @@ -49,8 +49,8 @@ public:
|
|
|
| private:
|
| HTMLDataListElement(Document&);
|
| - virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
|
| - virtual void finishParsingChildren() OVERRIDE;
|
| + virtual void childrenChanged(const ChildrenChange&) override;
|
| + virtual void finishParsingChildren() override;
|
| };
|
|
|
| } // namespace blink
|
|
|