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

Unified Diff: content/browser/streams/stream_handle_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 | « content/browser/storage_partition_impl_map.cc ('k') | content/browser/streams/stream_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/streams/stream_handle_impl.h
diff --git a/content/browser/streams/stream_handle_impl.h b/content/browser/streams/stream_handle_impl.h
index dc64dade6daa0bfb98e5b65d090181b3440cab72..762aaebd5dbe4f927e2b129e36063a9857507dc9 100644
--- a/content/browser/streams/stream_handle_impl.h
+++ b/content/browser/streams/stream_handle_impl.h
@@ -29,11 +29,11 @@ class StreamHandleImpl : public StreamHandle {
private:
// StreamHandle overrides
- virtual const GURL& GetURL() OVERRIDE;
- virtual const GURL& GetOriginalURL() OVERRIDE;
- virtual const std::string& GetMimeType() OVERRIDE;
- virtual scoped_refptr<net::HttpResponseHeaders> GetResponseHeaders() OVERRIDE;
- virtual void AddCloseListener(const base::Closure& callback) OVERRIDE;
+ virtual const GURL& GetURL() override;
+ virtual const GURL& GetOriginalURL() override;
+ virtual const std::string& GetMimeType() override;
+ virtual scoped_refptr<net::HttpResponseHeaders> GetResponseHeaders() override;
+ virtual void AddCloseListener(const base::Closure& callback) override;
base::WeakPtr<Stream> stream_;
GURL url_;
« no previous file with comments | « content/browser/storage_partition_impl_map.cc ('k') | content/browser/streams/stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698