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

Unified Diff: Source/modules/fetch/Body.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
Index: Source/modules/fetch/Body.h
diff --git a/Source/modules/fetch/Body.h b/Source/modules/fetch/Body.h
index a389fb2eef4df88435261eaaf3f2a60235ce5f50..1a0663edc9e6d0693495d7bba618cfb85d12614e 100644
--- a/Source/modules/fetch/Body.h
+++ b/Source/modules/fetch/Body.h
@@ -49,7 +49,7 @@ public:
PassBody,
};
explicit Body(ExecutionContext*);
- virtual ~Body() { }
+ ~Body() override { }
ScriptPromise arrayBuffer(ScriptState*);
ScriptPromise blob(ScriptState*);
@@ -66,7 +66,7 @@ public:
PassOwnPtr<DrainingBodyStreamBuffer> createDrainingStream();
// ActiveDOMObject override.
- virtual bool hasPendingActivity() const override;
+ bool hasPendingActivity() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/encryptedmedia/SimpleContentDecryptionModuleResultPromise.h ('k') | Source/modules/filesystem/DOMFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698