Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Unified Diff: jingle/notifier/base/proxy_resolving_client_socket.h

Issue 9148011: Allow chrome to handle 407 auth challenges to CONNECT requests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: jingle/notifier/base/proxy_resolving_client_socket.h
===================================================================
--- jingle/notifier/base/proxy_resolving_client_socket.h (revision 117986)
+++ jingle/notifier/base/proxy_resolving_client_socket.h (working copy)
@@ -25,6 +25,8 @@
namespace net {
class ClientSocketFactory;
class ClientSocketHandle;
+class HttpResponseInfo;
+class HttpAuthController;
class HttpNetworkSession;
class URLRequestContextGetter;
} // namespace net
@@ -71,6 +73,11 @@
void ProcessProxyResolveDone(int status);
void ProcessConnectDone(int status);
+ void OnNeedsProxyTunnelAuthCallback(
+ const net::HttpResponseInfo& response_info,
+ net::HttpAuthController* auth_controller,
+ net::CompletionCallback callback);
+
void CloseTransportSocket();
void RunUserConnectCallback(int status);
int ReconsiderProxyAfterError(int error);

Powered by Google App Engine
This is Rietveld 408576698