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

Side by Side Diff: net/http/http_proxy_client_socket_pool_unittest.cc

Issue 981723008: Unwind the SSL connection holdback experiment and remove related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename & reformat Created 5 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/http/http_proxy_client_socket_pool.h" 5 #include "net/http/http_proxy_client_socket_pool.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 NULL /* channel_id_store */, 170 NULL /* channel_id_store */,
171 NULL /* transport_security_state */, 171 NULL /* transport_security_state */,
172 NULL /* cert_transparency_verifier */, 172 NULL /* cert_transparency_verifier */,
173 NULL /* cert_policy_enforcer */, 173 NULL /* cert_policy_enforcer */,
174 std::string() /* ssl_session_cache_shard */, 174 std::string() /* ssl_session_cache_shard */,
175 session_deps_.deterministic_socket_factory.get(), 175 session_deps_.deterministic_socket_factory.get(),
176 &transport_socket_pool_, 176 &transport_socket_pool_,
177 NULL, 177 NULL,
178 NULL, 178 NULL,
179 session_deps_.ssl_config_service.get(), 179 session_deps_.ssl_config_service.get(),
180 false,
181 BoundNetLog().net_log()), 180 BoundNetLog().net_log()),
182 session_(CreateNetworkSession()), 181 session_(CreateNetworkSession()),
183 http_proxy_histograms_("HttpProxyUnitTest"), 182 http_proxy_histograms_("HttpProxyUnitTest"),
184 spdy_util_(GetParam().protocol), 183 spdy_util_(GetParam().protocol),
185 pool_(kMaxSockets, 184 pool_(kMaxSockets,
186 kMaxSocketsPerGroup, 185 kMaxSocketsPerGroup,
187 &http_proxy_histograms_, 186 &http_proxy_histograms_,
188 &transport_socket_pool_, 187 &transport_socket_pool_,
189 &ssl_socket_pool_, 188 &ssl_socket_pool_,
190 NULL) {} 189 NULL) {}
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 EXPECT_TRUE(headers->IsRedirect(&location)); 840 EXPECT_TRUE(headers->IsRedirect(&location));
842 EXPECT_EQ(location, redirectTarget); 841 EXPECT_EQ(location, redirectTarget);
843 } 842 }
844 } 843 }
845 844
846 // It would be nice to also test the timeouts in HttpProxyClientSocketPool. 845 // It would be nice to also test the timeouts in HttpProxyClientSocketPool.
847 846
848 } // namespace 847 } // namespace
849 848
850 } // namespace net 849 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/http/http_stream_factory_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698