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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/HTMLVideoElement.h ('k') | Source/core/html/HTMLWBRElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLViewSourceDocument.h
diff --git a/Source/core/html/HTMLViewSourceDocument.h b/Source/core/html/HTMLViewSourceDocument.h
index 08e4d71630edcf3caeae6d7cd818a89c26c9de2d..c1c943d0b148551a327291c45d54f4bedfb226cf 100644
--- a/Source/core/html/HTMLViewSourceDocument.h
+++ b/Source/core/html/HTMLViewSourceDocument.h
@@ -33,7 +33,7 @@ class HTMLTableCellElement;
class HTMLTableSectionElement;
class HTMLToken;
-class HTMLViewSourceDocument FINAL : public HTMLDocument {
+class HTMLViewSourceDocument final : public HTMLDocument {
public:
enum SourceAnnotation {
AnnotateSourceAsSafe,
@@ -47,12 +47,12 @@ public:
void addSource(const String&, HTMLToken&, SourceAnnotation);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
HTMLViewSourceDocument(const DocumentInit&, const String& mimeType);
- virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser() OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser() override;
void processDoctypeToken(const String& source, HTMLToken&);
void processEndOfFileToken(const String& source, HTMLToken&);
« no previous file with comments | « Source/core/html/HTMLVideoElement.h ('k') | Source/core/html/HTMLWBRElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698