diff options
Diffstat (limited to 'net/http/http_network_session.h')
-rw-r--r-- | net/http/http_network_session.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h index e808554..11ccc26c 100644 --- a/net/http/http_network_session.h +++ b/net/http/http_network_session.h @@ -6,9 +6,9 @@ #define NET_HTTP_HTTP_NETWORK_SESSION_H_ #include "base/ref_counted.h" -#include "net/base/auth_cache.h" #include "net/base/client_socket_pool.h" #include "net/base/ssl_config_service.h" +#include "net/http/http_auth_cache.h" #include "net/proxy/proxy_service.h" namespace net { @@ -27,7 +27,7 @@ class HttpNetworkSession : public base::RefCounted<HttpNetworkSession> { proxy_service_(proxy_resolver) { } - AuthCache* auth_cache() { return &auth_cache_; } + HttpAuthCache* auth_cache() { return &auth_cache_; } ClientSocketPool* connection_pool() { return connection_pool_; } ProxyService* proxy_service() { return &proxy_service_; } #if defined(OS_WIN) @@ -35,7 +35,7 @@ class HttpNetworkSession : public base::RefCounted<HttpNetworkSession> { #endif private: - AuthCache auth_cache_; + HttpAuthCache auth_cache_; scoped_refptr<ClientSocketPool> connection_pool_; scoped_ptr<ProxyResolver> proxy_resolver_; ProxyService proxy_service_; |