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

Unified Diff: net/http/http_proxy_client_socket_pool.h

Issue 4339001: Correctly handle SSL Client Authentication requests when connecting... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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: net/http/http_proxy_client_socket_pool.h
===================================================================
--- net/http/http_proxy_client_socket_pool.h (revision 65819)
+++ net/http/http_proxy_client_socket_pool.h (working copy)
@@ -14,6 +14,7 @@
#include "base/time.h"
#include "net/base/host_port_pair.h"
#include "net/http/http_auth.h"
+#include "net/http/http_response_info.h"
#include "net/socket/client_socket_pool_base.h"
#include "net/socket/client_socket_pool_histograms.h"
#include "net/socket/client_socket_pool.h"
@@ -105,6 +106,8 @@
// ConnectJob methods.
virtual LoadState GetLoadState() const;
+ virtual void GetAdditionalErrorState(ClientSocketHandle* handle);
+
private:
enum State {
STATE_TCP_CONNECT,
@@ -157,6 +160,8 @@
scoped_ptr<ClientSocket> transport_socket_;
bool using_spdy_;
+ HttpResponseInfo error_response_info_;
+
scoped_refptr<SpdyStream> spdy_stream_;
DISALLOW_COPY_AND_ASSIGN(HttpProxyConnectJob);

Powered by Google App Engine
This is Rietveld 408576698