| 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_;
|
|
|