OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_BASE_CLIENT_SOCKET_POOL_H_ | 5 #ifndef NET_BASE_CLIENT_SOCKET_POOL_H_ |
6 #define NET_BASE_CLIENT_SOCKET_POOL_H_ | 6 #define NET_BASE_CLIENT_SOCKET_POOL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 // The maximum number of sockets kept per group. | 137 // The maximum number of sockets kept per group. |
138 int max_sockets_per_group_; | 138 int max_sockets_per_group_; |
139 | 139 |
140 DISALLOW_COPY_AND_ASSIGN(ClientSocketPool); | 140 DISALLOW_COPY_AND_ASSIGN(ClientSocketPool); |
141 }; | 141 }; |
142 | 142 |
143 } // namespace net | 143 } // namespace net |
144 | 144 |
145 #endif // NET_BASE_CLIENT_SOCKET_POOL_H_ | 145 #endif // NET_BASE_CLIENT_SOCKET_POOL_H_ |
146 | |
OLD | NEW |