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

Unified Diff: net/http/http_proxy_client_socket_pool.cc

Issue 15701009: [SPDY] Add a SpdyStreamType enum and use it for SpdyStream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CHECK -> DCHECK Created 7 years, 7 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
« no previous file with comments | « no previous file | net/spdy/spdy_http_stream.h » ('j') | net/spdy/spdy_http_stream.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_proxy_client_socket_pool.cc
diff --git a/net/http/http_proxy_client_socket_pool.cc b/net/http/http_proxy_client_socket_pool.cc
index b6bed9edf5b8a1ef19d8a4f31bdaacc614c4b096..3b99de74c4bf51e2488f3ac405ff715e8fa47fc0 100644
--- a/net/http/http_proxy_client_socket_pool.cc
+++ b/net/http/http_proxy_client_socket_pool.cc
@@ -322,8 +322,8 @@ int HttpProxyConnectJob::DoSpdyProxyCreateStream() {
next_state_ = STATE_SPDY_PROXY_CREATE_STREAM_COMPLETE;
return spdy_stream_request_.StartRequest(
- spdy_session, params_->request_url(), params_->destination().priority(),
- spdy_session->net_log(), callback_);
+ SPDY_BIDIRECTIONAL_STREAM, spdy_session, params_->request_url(),
+ params_->destination().priority(), spdy_session->net_log(), callback_);
}
int HttpProxyConnectJob::DoSpdyProxyCreateStreamComplete(int result) {
« no previous file with comments | « no previous file | net/spdy/spdy_http_stream.h » ('j') | net/spdy/spdy_http_stream.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698