| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SSL_CLIENT_SOCKET_POOL_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
| 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 | 226 |
| 227 void CloseIdleSockets() override; | 227 void CloseIdleSockets() override; |
| 228 | 228 |
| 229 int IdleSocketCount() const override; | 229 int IdleSocketCount() const override; |
| 230 | 230 |
| 231 int IdleSocketCountInGroup(const std::string& group_name) const override; | 231 int IdleSocketCountInGroup(const std::string& group_name) const override; |
| 232 | 232 |
| 233 LoadState GetLoadState(const std::string& group_name, | 233 LoadState GetLoadState(const std::string& group_name, |
| 234 const ClientSocketHandle* handle) const override; | 234 const ClientSocketHandle* handle) const override; |
| 235 | 235 |
| 236 void PopulateAllocatorDump( |
| 237 base::trace_event::MemoryAllocatorDump* dump) const override; |
| 238 |
| 236 std::unique_ptr<base::DictionaryValue> GetInfoAsValue( | 239 std::unique_ptr<base::DictionaryValue> GetInfoAsValue( |
| 237 const std::string& name, | 240 const std::string& name, |
| 238 const std::string& type, | 241 const std::string& type, |
| 239 bool include_nested_pools) const override; | 242 bool include_nested_pools) const override; |
| 240 | 243 |
| 241 base::TimeDelta ConnectionTimeout() const override; | 244 base::TimeDelta ConnectionTimeout() const override; |
| 242 | 245 |
| 243 // LowerLayeredPool implementation. | 246 // LowerLayeredPool implementation. |
| 244 bool IsStalled() const override; | 247 bool IsStalled() const override; |
| 245 | 248 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 HttpProxyClientSocketPool* const http_proxy_pool_; | 299 HttpProxyClientSocketPool* const http_proxy_pool_; |
| 297 PoolBase base_; | 300 PoolBase base_; |
| 298 const scoped_refptr<SSLConfigService> ssl_config_service_; | 301 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 299 | 302 |
| 300 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); | 303 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); |
| 301 }; | 304 }; |
| 302 | 305 |
| 303 } // namespace net | 306 } // namespace net |
| 304 | 307 |
| 305 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 308 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
| OLD | NEW |