| Index: Source/core/html/HTMLDocument.h
|
| diff --git a/Source/core/html/HTMLDocument.h b/Source/core/html/HTMLDocument.h
|
| index 78681f6fca0d6c66f55cd0a7d9d627426b411b8f..dddee3ddb650ecf3e151d36c1460339ea0ab007b 100644
|
| --- a/Source/core/html/HTMLDocument.h
|
| +++ b/Source/core/html/HTMLDocument.h
|
| @@ -38,7 +38,7 @@ public:
|
| {
|
| return adoptRefWillBeNoop(new HTMLDocument(initializer));
|
| }
|
| - virtual ~HTMLDocument();
|
| + ~HTMLDocument() override;
|
|
|
| const AtomicString& bgColor() const;
|
| void setBgColor(const AtomicString&);
|
| @@ -71,7 +71,7 @@ public:
|
|
|
| static bool isCaseSensitiveAttribute(const QualifiedName&);
|
|
|
| - virtual PassRefPtrWillBeRawPtr<Document> cloneDocumentWithoutChildren() override final;
|
| + PassRefPtrWillBeRawPtr<Document> cloneDocumentWithoutChildren() final;
|
|
|
| protected:
|
| HTMLDocument(const DocumentInit&, DocumentClassFlags extendedDocumentClasses = DefaultDocumentClass);
|
|
|