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

Unified Diff: net/http/http_network_session.h

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove "httpsv" scheme, minor NSS/OpenSSL changes Created 9 years, 8 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
« no previous file with comments | « net/http/http_cache_unittest.cc ('k') | net/http/http_network_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « net/http/http_cache_unittest.cc ('k') | net/http/http_network_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698