| Index: net/http/http_cache.h
|
| diff --git a/net/http/http_cache.h b/net/http/http_cache.h
|
| index df4643371edbf910b2fbb3bd2e814e4e8db06f55..526da587b173002035341e0e0ab505991b9f68b4 100644
|
| --- a/net/http/http_cache.h
|
| +++ b/net/http/http_cache.h
|
| @@ -109,7 +109,7 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory,
|
| // BackendFactory implementation.
|
| virtual int CreateBackend(NetLog* net_log,
|
| disk_cache::Backend** backend,
|
| - OldCompletionCallback* callback);
|
| + OldCompletionCallback* callback) OVERRIDE;
|
|
|
| private:
|
| CacheType type_;
|
| @@ -191,9 +191,9 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory,
|
| void OnExternalCacheHit(const GURL& url, const std::string& http_method);
|
|
|
| // HttpTransactionFactory implementation:
|
| - 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;
|
|
|
| protected:
|
| // Disk cache entry data indices.
|
|
|