Chromium Code Reviews| Index: net/http/http_cache.h |
| diff --git a/net/http/http_cache.h b/net/http/http_cache.h |
| index 9ac89aabcc61bd4eda01396074e04d7b90b67424..498284d86663e481c30b490515d776d8cf7e02dd 100644 |
| --- a/net/http/http_cache.h |
| +++ b/net/http/http_cache.h |
| @@ -211,6 +211,7 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory, |
| // Types -------------------------------------------------------------------- |
| class MetadataWriter; |
| + class SSLHostInfoFactoryAdaptor; |
| class Transaction; |
| class WorkItem; |
| friend class Transaction; |
| @@ -381,6 +382,10 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory, |
| Mode mode_; |
| + // TODO(rtenneti): ssl_host_info_factory_ should be const. |
| + const scoped_ptr<SSLHostInfoFactoryAdaptor> ssl_host_info_factory_; |
| + |
| + // TODO(rtenneti): network_layer_ should be const. |
|
wtc
2014/01/18 01:02:01
Remove the TODO comments on lines 385 and 388.
ramant (doing other things)
2014/01/18 01:28:53
Done.
|
| const scoped_ptr<HttpTransactionFactory> network_layer_; |
| scoped_ptr<disk_cache::Backend> disk_cache_; |