OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 kMaxSockets, kMaxSocketsPerGroup, | 59 kMaxSockets, kMaxSocketsPerGroup, |
60 &tcp_histograms_, | 60 &tcp_histograms_, |
61 &socket_factory_), | 61 &socket_factory_), |
62 ssl_histograms_("MockSSL"), | 62 ssl_histograms_("MockSSL"), |
63 ssl_config_service_(new SSLConfigServiceDefaults), | 63 ssl_config_service_(new SSLConfigServiceDefaults), |
64 host_resolver_(new MockHostResolver), | 64 host_resolver_(new MockHostResolver), |
65 ssl_socket_pool_(kMaxSockets, kMaxSocketsPerGroup, | 65 ssl_socket_pool_(kMaxSockets, kMaxSocketsPerGroup, |
66 &ssl_histograms_, | 66 &ssl_histograms_, |
67 host_resolver_.get(), | 67 host_resolver_.get(), |
68 NULL /* dnsrr_resolver */, | 68 NULL /* dnsrr_resolver */, |
| 69 NULL /* ssl_host_info_factory */, |
69 &socket_factory_, | 70 &socket_factory_, |
70 &tcp_socket_pool_, | 71 &tcp_socket_pool_, |
71 NULL, | 72 NULL, |
72 NULL, | 73 NULL, |
73 ssl_config_service_.get(), | 74 ssl_config_service_.get(), |
74 BoundNetLog().net_log()), | 75 BoundNetLog().net_log()), |
75 http_auth_handler_factory_( | 76 http_auth_handler_factory_( |
76 HttpAuthHandlerFactory::CreateDefault(host_resolver_.get())), | 77 HttpAuthHandlerFactory::CreateDefault(host_resolver_.get())), |
77 session_(new HttpNetworkSession(host_resolver_.get(), | 78 session_(new HttpNetworkSession(host_resolver_.get(), |
78 NULL /* dnsrr_resolver */, | 79 NULL /* dnsrr_resolver */, |
| 80 NULL /* ssl_host_info_factory */, |
79 ProxyService::CreateDirect(), | 81 ProxyService::CreateDirect(), |
80 &socket_factory_, | 82 &socket_factory_, |
81 new SSLConfigServiceDefaults, | 83 new SSLConfigServiceDefaults, |
82 new SpdySessionPool(NULL), | 84 new SpdySessionPool(NULL), |
83 http_auth_handler_factory_.get(), | 85 http_auth_handler_factory_.get(), |
84 NULL, | 86 NULL, |
85 NULL)), | 87 NULL)), |
86 http_proxy_histograms_("HttpProxyUnitTest"), | 88 http_proxy_histograms_("HttpProxyUnitTest"), |
87 ssl_data_(NULL), | 89 ssl_data_(NULL), |
88 data_(NULL), | 90 data_(NULL), |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 data_->RunFor(2); | 496 data_->RunFor(2); |
495 | 497 |
496 EXPECT_EQ(ERR_TUNNEL_CONNECTION_FAILED, callback_.WaitForResult()); | 498 EXPECT_EQ(ERR_TUNNEL_CONNECTION_FAILED, callback_.WaitForResult()); |
497 EXPECT_FALSE(handle_.is_initialized()); | 499 EXPECT_FALSE(handle_.is_initialized()); |
498 EXPECT_FALSE(handle_.socket()); | 500 EXPECT_FALSE(handle_.socket()); |
499 } | 501 } |
500 | 502 |
501 // It would be nice to also test the timeouts in HttpProxyClientSocketPool. | 503 // It would be nice to also test the timeouts in HttpProxyClientSocketPool. |
502 | 504 |
503 } // namespace net | 505 } // namespace net |
OLD | NEW |