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

Unified Diff: Source/core/dom/RawDataDocumentParser.h

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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/dom/RangeTest.cpp ('k') | Source/core/dom/RenderedDocumentMarker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/RawDataDocumentParser.h
diff --git a/Source/core/dom/RawDataDocumentParser.h b/Source/core/dom/RawDataDocumentParser.h
index 233b6c6d2b402434d0867fca38d6df6cc8635e78..6c17acbd1d2043f1b60d3245007eedc28c6ecac9 100644
--- a/Source/core/dom/RawDataDocumentParser.h
+++ b/Source/core/dom/RawDataDocumentParser.h
@@ -38,24 +38,24 @@ protected:
{
}
- virtual void finish() OVERRIDE
+ virtual void finish() override
{
if (!isStopped())
document()->finishedParsing();
}
private:
- virtual void flush() OVERRIDE
+ virtual void flush() override
{
// Make sure appendBytes is called at least once.
appendBytes(0, 0);
}
- virtual void insert(const SegmentedString&) OVERRIDE
+ virtual void insert(const SegmentedString&) override
{
}
- virtual void append(PassRefPtr<StringImpl>) OVERRIDE
+ virtual void append(PassRefPtr<StringImpl>) override
{
ASSERT_NOT_REACHED();
}
« no previous file with comments | « Source/core/dom/RangeTest.cpp ('k') | Source/core/dom/RenderedDocumentMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698