Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Side by Side Diff: net/http/http_network_session.h

Issue 3747003: net: clean up SSLHostInfo construction. (Closed)
Patch Set: ... Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/http/http_network_layer_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « net/http/http_network_layer_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698