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

Unified Diff: net/http/proxy_connect_redirect_http_stream.cc

Issue 1884943003: HttpStreamParser: Don't reuse sockets which receive unparsed data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix drainer test ('True' means closed...) Created 4 years, 8 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: net/http/proxy_connect_redirect_http_stream.cc
diff --git a/net/http/proxy_connect_redirect_http_stream.cc b/net/http/proxy_connect_redirect_http_stream.cc
index 45d742450e5573ffb7ec6ebc3eab2749d386757c..6d20bf2d5edfa9210e93c36aa98b4818ee2444ee 100644
--- a/net/http/proxy_connect_redirect_http_stream.cc
+++ b/net/http/proxy_connect_redirect_http_stream.cc
@@ -8,6 +8,7 @@
#include "base/logging.h"
#include "net/base/net_errors.h"
+#include "net/http/http_response_info.h"
namespace net {
@@ -109,7 +110,9 @@ Error ProxyConnectRedirectHttpStream::GetSignedEKMForTokenBinding(
return ERR_NOT_IMPLEMENTED;
}
-void ProxyConnectRedirectHttpStream::Drain(HttpNetworkSession* session) {
+void ProxyConnectRedirectHttpStream::Drain(
+ HttpNetworkSession* session,
+ scoped_ptr<HttpResponseInfo> response_info) {
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698