diff options
author | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 16:38:58 +0000 |
---|---|---|
committer | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 16:38:58 +0000 |
commit | 697ef4c118a291ca473a3defdb66b55b2e0f30c8 (patch) | |
tree | f4e3b927a401885de0366c938a46c835a8716e0e /chrome/browser | |
parent | 7a4cdac40d2cd8be44ea842a5240ffbb6665eadd (diff) | |
download | chromium_src-697ef4c118a291ca473a3defdb66b55b2e0f30c8.zip chromium_src-697ef4c118a291ca473a3defdb66b55b2e0f30c8.tar.gz chromium_src-697ef4c118a291ca473a3defdb66b55b2e0f30c8.tar.bz2 |
Add a RenewStreamForAuth method to HttpStream, replacing DetachConnection
BUG=58192
TEST=Start chrome with --auth-schemes=NTLM and --proxy-server pointing to a Microsoft Forefront Threat Management Gateway proxy configurated for Integrated Authentication. Assuming the user is part of the same domain as the proxy, authentication should work transparently, and the user should not be presented with auth prompts. Also, net_unittests should pass.
Review URL: http://codereview.chromium.org/3676004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/net/preconnect.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/chrome/browser/net/preconnect.cc b/chrome/browser/net/preconnect.cc index 6780ade..ca22bd6 100644 --- a/chrome/browser/net/preconnect.cc +++ b/chrome/browser/net/preconnect.cc @@ -101,13 +101,8 @@ void Preconnect::Connect(const GURL& url) { proxy_info_.reset(new net::ProxyInfo()); net::StreamFactory* stream_factory = session->http_stream_factory(); - stream_factory->RequestStream(request_info_.get(), - ssl_config_.get(), - proxy_info_.get(), - NULL, - this, - net_log_, - session, + stream_factory->RequestStream(request_info_.get(), ssl_config_.get(), + proxy_info_.get(), this, net_log_, session, &stream_request_job_); } |