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

Unified Diff: net/spdy/spdy_proxy_client_socket_unittest.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
Index: net/spdy/spdy_proxy_client_socket_unittest.cc
diff --git a/net/spdy/spdy_proxy_client_socket_unittest.cc b/net/spdy/spdy_proxy_client_socket_unittest.cc
index 7ef3f258a71a072f5bb354489de766a094ba970d..252c8f5c6889355dbf0637386258a49ea5db9221 100644
--- a/net/spdy/spdy_proxy_client_socket_unittest.cc
+++ b/net/spdy/spdy_proxy_client_socket_unittest.cc
@@ -207,7 +207,8 @@ void SpdyProxyClientSocketTest::Initialize(MockRead* reads,
// Create the SPDY Stream.
base::WeakPtr<SpdyStream> spdy_stream(
CreateStreamSynchronously(
- spdy_session_, url_, LOWEST, net_log_.bound()));
+ SPDY_BIDIRECTIONAL_STREAM, spdy_session_, url_, LOWEST,
+ net_log_.bound()));
ASSERT_TRUE(spdy_stream.get() != NULL);
// Create the SpdyProxyClientSocket.

Powered by Google App Engine
This is Rietveld 408576698