summaryrefslogtreecommitdiffstats
path: root/net/http/http_network_session.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_network_session.h')
-rw-r--r--net/http/http_network_session.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h
index 27267bb..6eb92db 100644
--- a/net/http/http_network_session.h
+++ b/net/http/http_network_session.h
@@ -21,10 +21,12 @@ class FlipSessionPool;
// This class holds session objects used by HttpNetworkTransaction objects.
class HttpNetworkSession : public base::RefCounted<HttpNetworkSession> {
public:
- HttpNetworkSession(HostResolver* host_resolver, ProxyService* proxy_service,
- ClientSocketFactory* client_socket_factory,
- SSLConfigService* ssl_config_service,
- FlipSessionPool* flip_session_pool);
+ HttpNetworkSession(
+ HostResolver* host_resolver,
+ ProxyService* proxy_service,
+ ClientSocketFactory* client_socket_factory,
+ SSLConfigService* ssl_config_service,
+ FlipSessionPool* flip_session_pool);
HttpAuthCache* auth_cache() { return &auth_cache_; }
SSLClientAuthCache* ssl_client_auth_cache() {
@@ -69,6 +71,7 @@ class HttpNetworkSession : public base::RefCounted<HttpNetworkSession> {
HttpAuthCache auth_cache_;
SSLClientAuthCache ssl_client_auth_cache_;
+ const scoped_refptr<NetworkChangeNotifier> network_change_notifier_;
scoped_refptr<TCPClientSocketPool> tcp_socket_pool_;
ClientSocketFactory* socket_factory_;
scoped_refptr<HostResolver> host_resolver_;