Chromium Code Reviews| 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..5129fbbc91527897dd51368cb47a670dd458d190 100644 |
| --- a/net/http/http_stream_factory_impl_unittest.cc |
| +++ b/net/http/http_stream_factory_impl_unittest.cc |
| @@ -424,19 +424,20 @@ 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 /* ssl_host_info_factory */, |
| + NULL /* cert_transparency_verifier */, |
|
wtc
2014/01/15 19:08:59
Reverse these two arguments to match the argument
ramant (doing other things)
2014/01/18 00:21:56
Done.
|
| + 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, |