| 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 18 matching lines...) Expand all Loading... |
| 29 class DnsRRResolver; | 29 class DnsRRResolver; |
| 30 class HostPortPair; | 30 class HostPortPair; |
| 31 class HttpProxyClientSocketPool; | 31 class HttpProxyClientSocketPool; |
| 32 class HttpProxySocketParams; | 32 class HttpProxySocketParams; |
| 33 class SOCKSClientSocketPool; | 33 class SOCKSClientSocketPool; |
| 34 class SOCKSSocketParams; | 34 class SOCKSSocketParams; |
| 35 class SSLClientSocket; | 35 class SSLClientSocket; |
| 36 class SSLHostInfoFactory; | 36 class SSLHostInfoFactory; |
| 37 class TransportSocketParams; | 37 class TransportSocketParams; |
| 38 class TransportClientSocketPool; | 38 class TransportClientSocketPool; |
| 39 struct RRResponse; | |
| 40 | 39 |
| 41 // SSLSocketParams only needs the socket params for the transport socket | 40 // SSLSocketParams only needs the socket params for the transport socket |
| 42 // that will be used (denoted by |proxy|). | 41 // that will be used (denoted by |proxy|). |
| 43 class NET_EXPORT_PRIVATE SSLSocketParams | 42 class NET_EXPORT_PRIVATE SSLSocketParams |
| 44 : public base::RefCounted<SSLSocketParams> { | 43 : public base::RefCounted<SSLSocketParams> { |
| 45 public: | 44 public: |
| 46 SSLSocketParams(const scoped_refptr<TransportSocketParams>& transport_params, | 45 SSLSocketParams(const scoped_refptr<TransportSocketParams>& transport_params, |
| 47 const scoped_refptr<SOCKSSocketParams>& socks_params, | 46 const scoped_refptr<SOCKSSocketParams>& socks_params, |
| 48 const scoped_refptr<HttpProxySocketParams>& http_proxy_params, | 47 const scoped_refptr<HttpProxySocketParams>& http_proxy_params, |
| 49 ProxyServer::Scheme proxy, | 48 ProxyServer::Scheme proxy, |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 const scoped_refptr<SSLConfigService> ssl_config_service_; | 280 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 282 | 281 |
| 283 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); | 282 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); |
| 284 }; | 283 }; |
| 285 | 284 |
| 286 REGISTER_SOCKET_PARAMS_FOR_POOL(SSLClientSocketPool, SSLSocketParams); | 285 REGISTER_SOCKET_PARAMS_FOR_POOL(SSLClientSocketPool, SSLSocketParams); |
| 287 | 286 |
| 288 } // namespace net | 287 } // namespace net |
| 289 | 288 |
| 290 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 289 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
| OLD | NEW |