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

Unified Diff: net/http/http_proxy_client_socket_pool_unittest.cc

Issue 451383002: Plumbing for TCP FastOpen for SSL sockets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TFO not enabled when Happy Eyeballs may be used. Created 6 years, 3 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_proxy_client_socket_pool_unittest.cc
diff --git a/net/http/http_proxy_client_socket_pool_unittest.cc b/net/http/http_proxy_client_socket_pool_unittest.cc
index f2464919e3a72e53a9a3c66a76db1490d50b98f5..94d98cc83cff5002ca33ffa647d6e755c7fb781b 100644
--- a/net/http/http_proxy_client_socket_pool_unittest.cc
+++ b/net/http/http_proxy_client_socket_pool_unittest.cc
@@ -120,7 +120,8 @@ class HttpProxyClientSocketPoolTest
return new TransportSocketParams(HostPortPair(kHttpProxyHost, 80),
false,
false,
- OnHostResolutionCallback());
+ OnHostResolutionCallback(),
+ AUTO_CONNECT_USE_DEFAULT);
}
scoped_refptr<SSLSocketParams> CreateHttpsProxyParams() const {
@@ -131,7 +132,8 @@ class HttpProxyClientSocketPoolTest
HostPortPair(kHttpsProxyHost, 443),
false,
false,
- OnHostResolutionCallback()),
+ OnHostResolutionCallback(),
+ AUTO_CONNECT_USE_DEFAULT),
NULL,
NULL,
HostPortPair(kHttpsProxyHost, 443),

Powered by Google App Engine
This is Rietveld 408576698