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

Unified Diff: Source/core/loader/SinkDocument.h

Issue 638503003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/loader (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/loader/ProgressTracker.h ('k') | Source/core/loader/SinkDocument.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/SinkDocument.h
diff --git a/Source/core/loader/SinkDocument.h b/Source/core/loader/SinkDocument.h
index 4c67f7766402a7204fe86dfe71f817fb263cfae3..e8291ee62783cf9332cd8653c596df9565eff150 100644
--- a/Source/core/loader/SinkDocument.h
+++ b/Source/core/loader/SinkDocument.h
@@ -30,7 +30,7 @@
namespace blink {
-class SinkDocument FINAL : public HTMLDocument {
+class SinkDocument final : public HTMLDocument {
public:
static PassRefPtrWillBeRawPtr<SinkDocument> create(const DocumentInit& initializer = DocumentInit())
{
@@ -40,7 +40,7 @@ public:
private:
SinkDocument(const DocumentInit&);
- virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser() OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser() override;
};
« no previous file with comments | « Source/core/loader/ProgressTracker.h ('k') | Source/core/loader/SinkDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698