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

Unified Diff: net/http/http_network_layer.h

Issue 8568021: Add OVERRIDE to net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net only Created 9 years, 1 month 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 | « net/http/http_net_log_params.h ('k') | net/http/http_network_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_layer.h
diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h
index 95f7c95624262f14a33af2295fcc098d16326c6d..1fb5b4ba162ff8505d4da5fd351ba0e35f2a549c 100644
--- a/net/http/http_network_layer.h
+++ b/net/http/http_network_layer.h
@@ -48,13 +48,13 @@ class NET_EXPORT HttpNetworkLayer
static void EnableSpdy(const std::string& mode);
// HttpTransactionFactory methods:
- virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans);
- virtual HttpCache* GetCache();
- virtual HttpNetworkSession* GetSession();
+ virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans) OVERRIDE;
+ virtual HttpCache* GetCache() OVERRIDE;
+ virtual HttpNetworkSession* GetSession() OVERRIDE;
// base::SystemMonitor::PowerObserver methods:
- virtual void OnSuspend();
- virtual void OnResume();
+ virtual void OnSuspend() OVERRIDE;
+ virtual void OnResume() OVERRIDE;
private:
const scoped_refptr<HttpNetworkSession> session_;
« no previous file with comments | « net/http/http_net_log_params.h ('k') | net/http/http_network_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698