diff options
Diffstat (limited to 'net/http/http_stream_request.cc')
-rw-r--r-- | net/http/http_stream_request.cc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/net/http/http_stream_request.cc b/net/http/http_stream_request.cc index 64110a7..cbc2188 100644 --- a/net/http/http_stream_request.cc +++ b/net/http/http_stream_request.cc @@ -498,12 +498,15 @@ int HttpStreamRequest::DoInitConnection() { proxy_tcp_params = NULL; } - http_proxy_params = new HttpProxySocketParams(proxy_tcp_params, - ssl_params, - authentication_url, - user_agent, - endpoint_, - session_, using_ssl_); + http_proxy_params = + new HttpProxySocketParams(proxy_tcp_params, + ssl_params, + authentication_url, + user_agent, + endpoint_, + session_->auth_cache(), + session_->http_auth_handler_factory(), + using_ssl_); } else { DCHECK(proxy_info()->is_socks()); char socks_version; |