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

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

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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/dom/PseudoElement.h ('k') | Source/core/dom/ScriptLoader.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 d1a0331c4d08def67f274431c1a2e0a846571582..6f7c7edf1119ab023b028516bd9b0092513fa11f 100644
--- a/Source/core/dom/RawDataDocumentParser.h
+++ b/Source/core/dom/RawDataDocumentParser.h
@@ -38,24 +38,24 @@ protected:
{
}
- virtual void finish() override
+ void finish() override
{
if (!isStopped())
document()->finishedParsing();
}
private:
- virtual void flush() override
+ void flush() override
{
// Make sure appendBytes is called at least once.
appendBytes(0, 0);
}
- virtual void insert(const SegmentedString&) override
+ void insert(const SegmentedString&) override
{
}
- virtual void append(const String&) override
+ void append(const String&) override
{
ASSERT_NOT_REACHED();
}
« no previous file with comments | « Source/core/dom/PseudoElement.h ('k') | Source/core/dom/ScriptLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698