diff options
author | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-22 09:23:27 +0000 |
---|---|---|
committer | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-22 09:23:27 +0000 |
commit | e20df7ba4595fe32ec0872ba83baf76de0e93b4f (patch) | |
tree | f9b6ec9a922fc1f1bc717a00ae685b2fb7e89e04 /net/net.gyp | |
parent | 1183b0258db1370e68038c7f6124991b71bf6c07 (diff) | |
download | chromium_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/net.gyp')
-rw-r--r-- | net/net.gyp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/net.gyp b/net/net.gyp index bb9eb01..e470d52 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -547,6 +547,8 @@ 'ftp/ftp_util.h', 'http/des.cc', 'http/des.h', + 'http/disk_cache_based_ssl_host_info.cc', + 'http/disk_cache_based_ssl_host_info.h', 'http/http_atom_list.h', 'http/http_auth.cc', 'http/http_auth.h', @@ -961,6 +963,8 @@ 'socket/ssl_client_socket_pool.h', 'socket/ssl_error_params.cc', 'socket/ssl_error_params.h', + 'socket/ssl_host_info.cc', + 'socket/ssl_host_info.h', 'socket/ssl_server_socket.h', 'socket/ssl_server_socket_nss.cc', 'socket/ssl_server_socket_nss.h', @@ -1726,6 +1730,7 @@ 'ftp/ftp_network_transaction_unittest.cc', 'ftp/ftp_util_unittest.cc', 'http/des_unittest.cc', + 'http/disk_cache_based_ssl_host_info_unittest.cc', 'http/http_auth_cache_unittest.cc', 'http/http_auth_controller_unittest.cc', 'http/http_auth_filter_unittest.cc', |