summaryrefslogtreecommitdiffstats
path: root/net/http/http_network_layer.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_network_layer.h')
-rw-r--r--net/http/http_network_layer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h
index 95f7c95..1fb5b4b 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_;