OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/transport_client_socket_pool.h" | 5 #include "net/socket/transport_client_socket_pool.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
12 #include "base/time.h" | 12 #include "base/time.h" |
| 13 #include "base/values.h" |
13 #include "net/base/ip_endpoint.h" | 14 #include "net/base/ip_endpoint.h" |
14 #include "net/base/net_log.h" | 15 #include "net/base/net_log.h" |
15 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
16 #include "net/base/sys_addrinfo.h" | 17 #include "net/base/sys_addrinfo.h" |
17 #include "net/socket/client_socket_factory.h" | 18 #include "net/socket/client_socket_factory.h" |
18 #include "net/socket/client_socket_handle.h" | 19 #include "net/socket/client_socket_handle.h" |
19 #include "net/socket/client_socket_pool_base.h" | 20 #include "net/socket/client_socket_pool_base.h" |
20 #include "net/socket/tcp_client_socket.h" | 21 #include "net/socket/tcp_client_socket.h" |
21 | 22 |
22 using base::TimeDelta; | 23 using base::TimeDelta; |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 | 482 |
482 base::TimeDelta TransportClientSocketPool::ConnectionTimeout() const { | 483 base::TimeDelta TransportClientSocketPool::ConnectionTimeout() const { |
483 return base_.ConnectionTimeout(); | 484 return base_.ConnectionTimeout(); |
484 } | 485 } |
485 | 486 |
486 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { | 487 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { |
487 return base_.histograms(); | 488 return base_.histograms(); |
488 } | 489 } |
489 | 490 |
490 } // namespace net | 491 } // namespace net |
OLD | NEW |