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_HTTP_HTTP_NETWORK_SESSION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ |
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 20 matching lines...) Expand all Loading... |
31 class ClientSocketFactory; | 31 class ClientSocketFactory; |
32 class DnsRRResolver; | 32 class DnsRRResolver; |
33 class HttpAuthHandlerFactory; | 33 class HttpAuthHandlerFactory; |
34 class HttpNetworkDelegate; | 34 class HttpNetworkDelegate; |
35 class HttpNetworkSessionPeer; | 35 class HttpNetworkSessionPeer; |
36 class HttpProxyClientSocketPool; | 36 class HttpProxyClientSocketPool; |
37 class HttpResponseBodyDrainer; | 37 class HttpResponseBodyDrainer; |
38 class SpdySessionPool; | 38 class SpdySessionPool; |
39 class SOCKSClientSocketPool; | 39 class SOCKSClientSocketPool; |
40 class SSLClientSocketPool; | 40 class SSLClientSocketPool; |
| 41 class SSLHostInfoFactory; |
41 class TCPClientSocketPool; | 42 class TCPClientSocketPool; |
42 | 43 |
43 // This class holds session objects used by HttpNetworkTransaction objects. | 44 // This class holds session objects used by HttpNetworkTransaction objects. |
44 class HttpNetworkSession : public base::RefCounted<HttpNetworkSession>, | 45 class HttpNetworkSession : public base::RefCounted<HttpNetworkSession>, |
45 public NonThreadSafe { | 46 public NonThreadSafe { |
46 public: | 47 public: |
47 HttpNetworkSession( | 48 HttpNetworkSession( |
48 HostResolver* host_resolver, | 49 HostResolver* host_resolver, |
49 DnsRRResolver* dnsrr_resolver, | 50 DnsRRResolver* dnsrr_resolver, |
| 51 SSLHostInfoFactory* ssl_host_info_factory, |
50 ProxyService* proxy_service, | 52 ProxyService* proxy_service, |
51 ClientSocketFactory* client_socket_factory, | 53 ClientSocketFactory* client_socket_factory, |
52 SSLConfigService* ssl_config_service, | 54 SSLConfigService* ssl_config_service, |
53 SpdySessionPool* spdy_session_pool, | 55 SpdySessionPool* spdy_session_pool, |
54 HttpAuthHandlerFactory* http_auth_handler_factory, | 56 HttpAuthHandlerFactory* http_auth_handler_factory, |
55 HttpNetworkDelegate* network_delegate, | 57 HttpNetworkDelegate* network_delegate, |
56 NetLog* net_log); | 58 NetLog* net_log); |
57 | 59 |
58 HttpAuthCache* auth_cache() { return &auth_cache_; } | 60 HttpAuthCache* auth_cache() { return &auth_cache_; } |
59 SSLClientAuthCache* ssl_client_auth_cache() { | 61 SSLClientAuthCache* ssl_client_auth_cache() { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 HttpAuthHandlerFactory* http_auth_handler_factory_; | 158 HttpAuthHandlerFactory* http_auth_handler_factory_; |
157 HttpNetworkDelegate* const network_delegate_; | 159 HttpNetworkDelegate* const network_delegate_; |
158 NetLog* net_log_; | 160 NetLog* net_log_; |
159 SpdySettingsStorage spdy_settings_; | 161 SpdySettingsStorage spdy_settings_; |
160 std::set<HttpResponseBodyDrainer*> response_drainers_; | 162 std::set<HttpResponseBodyDrainer*> response_drainers_; |
161 }; | 163 }; |
162 | 164 |
163 } // namespace net | 165 } // namespace net |
164 | 166 |
165 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 167 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
OLD | NEW |