Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(844)

Unified Diff: Source/core/html/HTMLDocument.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLDivElement.h ('k') | Source/core/html/HTMLElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/html/HTMLDivElement.h ('k') | Source/core/html/HTMLElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698