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

Unified Diff: net/http/http_stream_factory_impl_unittest.cc

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed wtc's comments Created 6 years, 11 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
Index: net/http/http_stream_factory_impl_unittest.cc
diff --git a/net/http/http_stream_factory_impl_unittest.cc b/net/http/http_stream_factory_impl_unittest.cc
index c326b8ab467abd2fd29d9f6bdc8180f6abf37477..0a1d3bf24f588e46e95402e44dd7c9e7007aecc0 100644
--- a/net/http/http_stream_factory_impl_unittest.cc
+++ b/net/http/http_stream_factory_impl_unittest.cc
@@ -424,19 +424,19 @@ CapturePreconnectsSSLSocketPool::CapturePreconnectsSocketPool(
CertVerifier* cert_verifier)
: SSLClientSocketPool(0,
0,
- NULL,
+ NULL, // ssl_histograms
host_resolver,
cert_verifier,
+ NULL, // server_bound_cert_store
+ NULL, // transport_security_state
+ NULL, // cert_transparency_verifier
+ std::string(), // ssl_session_cache_shard
+ NULL, // deterministic_socket_factory
+ NULL, // transport_socket_pool
NULL,
NULL,
- NULL,
- std::string(),
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL),
+ NULL, // ssl_config_service
+ NULL), // net_log
last_num_streams_(-1) {}
class HttpStreamFactoryTest : public ::testing::Test,

Powered by Google App Engine
This is Rietveld 408576698