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

Unified Diff: net/socket/client_socket_pool_manager_impl.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: Removed changes to SSL and non-net directories 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/socket/client_socket_pool_manager_impl.h
diff --git a/net/socket/client_socket_pool_manager_impl.h b/net/socket/client_socket_pool_manager_impl.h
index 06d4d244a369423318038463de54b1b3f4e8501f..9c12809641eed438c7ba339002f41231fb609156 100644
--- a/net/socket/client_socket_pool_manager_impl.h
+++ b/net/socket/client_socket_pool_manager_impl.h
@@ -32,6 +32,7 @@ class ProxyService;
class SOCKSClientSocketPool;
class SSLClientSocketPool;
class SSLConfigService;
+class SSLHostInfoFactory;
class TransportClientSocketPool;
class TransportSecurityState;
@@ -64,6 +65,7 @@ class ClientSocketPoolManagerImpl : public base::NonThreadSafe,
ServerBoundCertService* server_bound_cert_service,
TransportSecurityState* transport_security_state,
CTVerifier* cert_transparency_verifier,
+ SSLHostInfoFactory* ssl_host_info_factory,
wtc 2014/01/21 23:07:20 We should not need the changes to this file and to
ramant (doing other things) 2014/01/22 02:28:12 Done.
const std::string& ssl_session_cache_shard,
ProxyService* proxy_service,
SSLConfigService* ssl_config_service,
@@ -111,6 +113,7 @@ class ClientSocketPoolManagerImpl : public base::NonThreadSafe,
ServerBoundCertService* const server_bound_cert_service_;
TransportSecurityState* const transport_security_state_;
CTVerifier* const cert_transparency_verifier_;
+ SSLHostInfoFactory* const ssl_host_info_factory_;
const std::string ssl_session_cache_shard_;
ProxyService* const proxy_service_;
const scoped_refptr<SSLConfigService> ssl_config_service_;

Powered by Google App Engine
This is Rietveld 408576698