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 /net/http/stream_factory.h | |
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 'net/http/stream_factory.h')
-rw-r--r-- | net/http/stream_factory.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/http/stream_factory.h b/net/http/stream_factory.h index 6e89c53..9ec85f1 100644 --- a/net/http/stream_factory.h +++ b/net/http/stream_factory.h @@ -13,7 +13,6 @@ namespace net { class BoundNetLog; -class ClientSocketHandle; class HostPortPair; class HttpAlternateProtocols; class HttpAuthController; @@ -84,7 +83,6 @@ class StreamFactory { virtual void Start(const HttpRequestInfo* request_info, SSLConfig* ssl_config, ProxyInfo* proxy_info, - ClientSocketHandle* connection, StreamRequestDelegate* delegate, const BoundNetLog& net_log) = 0; @@ -130,7 +128,6 @@ class StreamFactory { virtual void RequestStream(const HttpRequestInfo* info, SSLConfig* ssl_config, ProxyInfo* proxy_info, - ClientSocketHandle* connection, StreamRequestDelegate* delegate, const BoundNetLog& net_log, const scoped_refptr<HttpNetworkSession>& session, |