Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2217)

Unified Diff: net/http/http_cache.h

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed wtc's comments Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698