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

Unified Diff: Source/core/streams/Stream.h

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (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
« no previous file with comments | « Source/core/loader/appcache/ApplicationCacheHost.h ('k') | Source/core/xmlhttprequest/XMLHttpRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/Stream.h
diff --git a/Source/core/streams/Stream.h b/Source/core/streams/Stream.h
index 79b7e465ecef6d60993e77edd346f3c74d62eeb1..1e83727b66488e5902673299228b9b79da3d7ba2 100644
--- a/Source/core/streams/Stream.h
+++ b/Source/core/streams/Stream.h
@@ -53,7 +53,7 @@ public:
return stream;
}
- virtual ~Stream();
+ ~Stream() override;
// Returns the internal URL referring to this stream.
const KURL& url() const { return m_internalURL; }
@@ -80,9 +80,9 @@ public:
// Implementation of ActiveDOMObject.
//
// FIXME: Implement suspend() and resume() when necessary.
- virtual void suspend() override;
- virtual void resume() override;
- virtual void stop() override;
+ void suspend() override;
+ void resume() override;
+ void stop() override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/loader/appcache/ApplicationCacheHost.h ('k') | Source/core/xmlhttprequest/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698