summaryrefslogtreecommitdiffstats
path: root/net/http/http_network_session.cc
diff options
context:
space:
mode:
authorrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-22 09:23:27 +0000
committerrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-22 09:23:27 +0000
commite20df7ba4595fe32ec0872ba83baf76de0e93b4f (patch)
treef9b6ec9a922fc1f1bc717a00ae685b2fb7e89e04 /net/http/http_network_session.cc
parent1183b0258db1370e68038c7f6124991b71bf6c07 (diff)
downloadchromium_src-e20df7ba4595fe32ec0872ba83baf76de0e93b4f.zip
chromium_src-e20df7ba4595fe32ec0872ba83baf76de0e93b4f.tar.gz
chromium_src-e20df7ba4595fe32ec0872ba83baf76de0e93b4f.tar.bz2
Added SSLHostInfo. Storing of server info to our standard disk cache.
Implemented DiskCacheBasedSSLHostInfo which fetches information about an SSL host from our standard disk cache. Since the information is defined to be non-sensitive, it's ok for us to keep it on disk. SSLHostInfo persists/restores server's certificates. Certificates is a vector of DER encoded X.509 certificates, as the server returned them and in the same order. These changes are the frame work. This code is not enabled to store any data to disk cache. R=wtc@chromium.org Review URL: https://codereview.chromium.org/135373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246254 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_network_session.cc')
-rw-r--r--net/http/http_network_session.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index ebab397..48d75ff 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -61,6 +61,7 @@ HttpNetworkSession::Params::Params()
transport_security_state(NULL),
cert_transparency_verifier(NULL),
proxy_service(NULL),
+ ssl_host_info_factory(NULL),
ssl_config_service(NULL),
http_auth_handler_factory(NULL),
network_delegate(NULL),