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

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: Removed changes to SSL and non-net directories 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..964573156bf3ea6842efa8bb0244a2a20223dfb0 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 */),
wtc 2014/01/21 23:07:20 Nit: you can use C++ style comments. They will nee
ramant (doing other things) 2014/01/22 02:28:12 Done.
last_num_streams_(-1) {}
class HttpStreamFactoryTest : public ::testing::Test,

Powered by Google App Engine
This is Rietveld 408576698