| 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/socket/ssl_client_socket_pool.h" | 5 #include "net/socket/ssl_client_socket_pool.h" |
| 6 | 6 |
| 7 #include "base/histogram.h" |
| 7 #include "base/values.h" | 8 #include "base/values.h" |
| 8 #include "net/base/dnsrr_resolver.h" | 9 #include "net/base/dnsrr_resolver.h" |
| 9 #include "net/base/dns_util.h" | 10 #include "net/base/dns_util.h" |
| 10 #include "net/base/net_errors.h" | 11 #include "net/base/net_errors.h" |
| 11 #include "net/base/ssl_cert_request_info.h" | 12 #include "net/base/ssl_cert_request_info.h" |
| 12 #include "net/http/http_proxy_client_socket.h" | 13 #include "net/http/http_proxy_client_socket.h" |
| 13 #include "net/http/http_proxy_client_socket_pool.h" | 14 #include "net/http/http_proxy_client_socket_pool.h" |
| 14 #include "net/socket/client_socket_factory.h" | 15 #include "net/socket/client_socket_factory.h" |
| 15 #include "net/socket/client_socket_handle.h" | 16 #include "net/socket/client_socket_handle.h" |
| 16 #include "net/socket/socks_client_socket_pool.h" | 17 #include "net/socket/socks_client_socket_pool.h" |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 list->Append(socks_pool_->GetInfoAsValue("socks_pool", | 541 list->Append(socks_pool_->GetInfoAsValue("socks_pool", |
| 541 "socks_pool", | 542 "socks_pool", |
| 542 true)); | 543 true)); |
| 543 } | 544 } |
| 544 dict->Set("nested_pools", list); | 545 dict->Set("nested_pools", list); |
| 545 } | 546 } |
| 546 return dict; | 547 return dict; |
| 547 } | 548 } |
| 548 | 549 |
| 549 } // namespace net | 550 } // namespace net |
| OLD | NEW |