| 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 #ifndef NET_SOCKET_TCP_CLIENT_SOCKET_POOL_H_ | 5 #ifndef NET_SOCKET_TCP_CLIENT_SOCKET_POOL_H_ |
| 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_POOL_H_ | 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_POOL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 NetLog* net_log_; | 191 NetLog* net_log_; |
| 192 | 192 |
| 193 DISALLOW_COPY_AND_ASSIGN(TCPConnectJobFactory); | 193 DISALLOW_COPY_AND_ASSIGN(TCPConnectJobFactory); |
| 194 }; | 194 }; |
| 195 | 195 |
| 196 PoolBase base_; | 196 PoolBase base_; |
| 197 | 197 |
| 198 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketPool); | 198 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketPool); |
| 199 }; | 199 }; |
| 200 | 200 |
| 201 REGISTER_SOCKET_PARAMS_FOR_POOL(TCPClientSocketPool, TCPSocketParams) | 201 REGISTER_SOCKET_PARAMS_FOR_POOL(TCPClientSocketPool, TCPSocketParams); |
| 202 | 202 |
| 203 } // namespace net | 203 } // namespace net |
| 204 | 204 |
| 205 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_POOL_H_ | 205 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_POOL_H_ |
| OLD | NEW |