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

Unified Diff: net/http/http_stream_factory_impl_unittest.cc

Issue 353713005: Implements new, more robust design for communicating between SSLConnectJobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed additional arg from GetNextProto (was added in by rebase (?)) and fixed other small bugs. Created 6 years, 5 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 13a26154dd1bc45515be62fb405465e58478e377..0f261a9792bd55fe180386a10485716dc9cf8a45 100644
--- a/net/http/http_stream_factory_impl_unittest.cc
+++ b/net/http/http_stream_factory_impl_unittest.cc
@@ -403,7 +403,7 @@ CapturePreconnectsSSLSocketPool::CapturePreconnectsSocketPool(
CertVerifier* cert_verifier)
: SSLClientSocketPool(0,
0,
- NULL, // ssl_histograms
+ NULL, // ssl_histograms
host_resolver,
cert_verifier,
NULL, // channel_id_store
@@ -414,9 +414,11 @@ CapturePreconnectsSSLSocketPool::CapturePreconnectsSocketPool(
NULL, // transport_socket_pool
NULL,
NULL,
- NULL, // ssl_config_service
- NULL), // net_log
- last_num_streams_(-1) {}
+ NULL, // ssl_config_service
+ false, // enable_ssl_connect_job_waiting
+ NULL), // net_log
+ last_num_streams_(-1) {
+}
class HttpStreamFactoryTest : public ::testing::Test,
public ::testing::WithParamInterface<NextProto> {

Powered by Google App Engine
This is Rietveld 408576698