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

Unified Diff: net/socket/ssl_client_socket_pool_unittest.cc

Issue 422063004: Certificate Transparency: Require SCTs for EV certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed histogram enum names Created 6 years 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/socket/ssl_client_socket_pool.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_pool_unittest.cc
diff --git a/net/socket/ssl_client_socket_pool_unittest.cc b/net/socket/ssl_client_socket_pool_unittest.cc
index 23bb11121f1226e5b6c32a703bbe711f2c431dea..1e4a14f6eb225e5aafa13d12932403b2b70c6a0e 100644
--- a/net/socket/ssl_client_socket_pool_unittest.cc
+++ b/net/socket/ssl_client_socket_pool_unittest.cc
@@ -143,22 +143,15 @@ class SSLClientSocketPoolTest
void CreatePool(bool transport_pool, bool http_proxy_pool, bool socks_pool) {
ssl_histograms_.reset(new ClientSocketPoolHistograms("SSLUnitTest"));
pool_.reset(new SSLClientSocketPool(
- kMaxSockets,
- kMaxSocketsPerGroup,
- ssl_histograms_.get(),
- NULL /* host_resolver */,
- NULL /* cert_verifier */,
- NULL /* channel_id_service */,
- NULL /* transport_security_state */,
- NULL /* cert_transparency_verifier */,
- std::string() /* ssl_session_cache_shard */,
- &socket_factory_,
+ kMaxSockets, kMaxSocketsPerGroup, ssl_histograms_.get(),
+ NULL /* host_resolver */, NULL /* cert_verifier */,
+ NULL /* channel_id_service */, NULL /* transport_security_state */,
+ NULL /* cert_transparency_verifier */, NULL /* cert_policy_enforcer */,
+ std::string() /* ssl_session_cache_shard */, &socket_factory_,
transport_pool ? &transport_socket_pool_ : NULL,
socks_pool ? &socks_socket_pool_ : NULL,
- http_proxy_pool ? &http_proxy_socket_pool_ : NULL,
- NULL,
- enable_ssl_connect_job_waiting_,
- NULL));
+ http_proxy_pool ? &http_proxy_socket_pool_ : NULL, NULL,
+ enable_ssl_connect_job_waiting_, NULL));
}
scoped_refptr<SSLSocketParams> SSLParams(ProxyServer::Scheme proxy,
« no previous file with comments | « net/socket/ssl_client_socket_pool.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698