Index: net/http/http_cache.h |
diff --git a/net/http/http_cache.h b/net/http/http_cache.h |
index 3f59839b36537b7ff3eb1ecb10b269273fc1b15c..5e6851fb8e06784044dad6faa331fb30516ef6d2 100644 |
--- a/net/http/http_cache.h |
+++ b/net/http/http_cache.h |
@@ -116,7 +116,7 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory, |
// BackendFactory implementation. |
virtual int CreateBackend(NetLog* net_log, |
scoped_ptr<disk_cache::Backend>* backend, |
- const CompletionCallback& callback) OVERRIDE; |
+ const CompletionCallback& callback) override; |
private: |
CacheType type_; |
@@ -214,9 +214,9 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory, |
// HttpTransactionFactory implementation: |
virtual int CreateTransaction(RequestPriority priority, |
- scoped_ptr<HttpTransaction>* trans) OVERRIDE; |
- virtual HttpCache* GetCache() OVERRIDE; |
- virtual HttpNetworkSession* GetSession() OVERRIDE; |
+ scoped_ptr<HttpTransaction>* trans) override; |
+ virtual HttpCache* GetCache() override; |
+ virtual HttpNetworkSession* GetSession() override; |
base::WeakPtr<HttpCache> GetWeakPtr() { return weak_factory_.GetWeakPtr(); } |