Index: net/http/http_network_session.h |
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h |
index 36cb6525dd8819baf077b6e05ae3a2cea33474c8..68ba0113c548118f0bae0441c1e02e31e32fa6a8 100644 |
--- a/net/http/http_network_session.h |
+++ b/net/http/http_network_session.h |
@@ -12,6 +12,7 @@ |
#include "net/base/host_port_pair.h" |
#include "net/base/host_resolver.h" |
#include "net/base/ssl_client_auth_cache.h" |
+#include "net/base/tls_client_login_cache.h" |
#include "net/http/http_alternate_protocols.h" |
#include "net/http/http_auth_cache.h" |
#include "net/http/http_stream_factory.h" |
@@ -75,6 +76,9 @@ class HttpNetworkSession : public base::RefCounted<HttpNetworkSession>, |
SSLClientAuthCache* ssl_client_auth_cache() { |
return &ssl_client_auth_cache_; |
} |
+ TLSClientLoginCache* tls_client_login_cache() { |
+ return &tls_client_login_cache_; |
+ } |
void AddResponseDrainer(HttpResponseBodyDrainer* drainer); |
@@ -159,6 +163,7 @@ class HttpNetworkSession : public base::RefCounted<HttpNetworkSession>, |
HttpAuthCache auth_cache_; |
SSLClientAuthCache ssl_client_auth_cache_; |
+ TLSClientLoginCache tls_client_login_cache_; |
HttpAlternateProtocols alternate_protocols_; |
CertVerifier* cert_verifier_; |
// Not const since it's modified by HttpNetworkSessionPeer for testing. |