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

Unified Diff: Source/core/html/parser/HTMLViewSourceParser.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/parser/HTMLTreeBuilder.h ('k') | Source/core/html/parser/TextDocumentParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLViewSourceParser.h
diff --git a/Source/core/html/parser/HTMLViewSourceParser.h b/Source/core/html/parser/HTMLViewSourceParser.h
index ec44c5e17c916dbcca7ec04a82a48ab653dff4ba..87465789b017c55fdd84a5f6ea9d9d6601c447cc 100644
--- a/Source/core/html/parser/HTMLViewSourceParser.h
+++ b/Source/core/html/parser/HTMLViewSourceParser.h
@@ -35,7 +35,7 @@
namespace blink {
-class HTMLViewSourceParser FINAL : public DecodedDataDocumentParser {
+class HTMLViewSourceParser final : public DecodedDataDocumentParser {
public:
static PassRefPtrWillBeRawPtr<HTMLViewSourceParser> create(HTMLViewSourceDocument& document, const String& mimeType)
{
@@ -47,9 +47,9 @@ private:
HTMLViewSourceParser(HTMLViewSourceDocument&, const String& mimeType);
// DocumentParser
- virtual void insert(const SegmentedString&) OVERRIDE { ASSERT_NOT_REACHED(); }
- virtual void append(PassRefPtr<StringImpl>) OVERRIDE;
- virtual void finish() OVERRIDE;
+ virtual void insert(const SegmentedString&) override { ASSERT_NOT_REACHED(); }
+ virtual void append(PassRefPtr<StringImpl>) override;
+ virtual void finish() override;
HTMLViewSourceDocument* document() const { return static_cast<HTMLViewSourceDocument*>(DecodedDataDocumentParser::document()); }
« no previous file with comments | « Source/core/html/parser/HTMLTreeBuilder.h ('k') | Source/core/html/parser/TextDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698