| 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 #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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 SSLClientSocketPool( | 176 SSLClientSocketPool( |
| 177 int max_sockets, | 177 int max_sockets, |
| 178 int max_sockets_per_group, | 178 int max_sockets_per_group, |
| 179 ClientSocketPoolHistograms* histograms, | 179 ClientSocketPoolHistograms* histograms, |
| 180 HostResolver* host_resolver, | 180 HostResolver* host_resolver, |
| 181 CertVerifier* cert_verifier, | 181 CertVerifier* cert_verifier, |
| 182 OriginBoundCertService* origin_bound_cert_service, | 182 OriginBoundCertService* origin_bound_cert_service, |
| 183 TransportSecurityState* transport_security_state, | 183 TransportSecurityState* transport_security_state, |
| 184 DnsCertProvenanceChecker* dns_cert_checker, | 184 DnsCertProvenanceChecker* dns_cert_checker, |
| 185 SSLHostInfoFactory* ssl_host_info_factory, | 185 SSLHostInfoFactory* ssl_host_info_factory, |
| 186 const std::string& ssl_session_cache_shard, |
| 186 ClientSocketFactory* client_socket_factory, | 187 ClientSocketFactory* client_socket_factory, |
| 187 TransportClientSocketPool* transport_pool, | 188 TransportClientSocketPool* transport_pool, |
| 188 SOCKSClientSocketPool* socks_pool, | 189 SOCKSClientSocketPool* socks_pool, |
| 189 HttpProxyClientSocketPool* http_proxy_pool, | 190 HttpProxyClientSocketPool* http_proxy_pool, |
| 190 SSLConfigService* ssl_config_service, | 191 SSLConfigService* ssl_config_service, |
| 191 NetLog* net_log); | 192 NetLog* net_log); |
| 192 | 193 |
| 193 virtual ~SSLClientSocketPool(); | 194 virtual ~SSLClientSocketPool(); |
| 194 | 195 |
| 195 // ClientSocketPool methods: | 196 // ClientSocketPool methods: |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 const scoped_refptr<SSLConfigService> ssl_config_service_; | 296 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 296 | 297 |
| 297 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); | 298 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); |
| 298 }; | 299 }; |
| 299 | 300 |
| 300 REGISTER_SOCKET_PARAMS_FOR_POOL(SSLClientSocketPool, SSLSocketParams); | 301 REGISTER_SOCKET_PARAMS_FOR_POOL(SSLClientSocketPool, SSLSocketParams); |
| 301 | 302 |
| 302 } // namespace net | 303 } // namespace net |
| 303 | 304 |
| 304 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 305 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
| OLD | NEW |