| Index: net/spdy/spdy_http_stream_unittest.cc
|
| ===================================================================
|
| --- net/spdy/spdy_http_stream_unittest.cc (revision 58183)
|
| +++ net/spdy/spdy_http_stream_unittest.cc (working copy)
|
| @@ -68,7 +68,8 @@
|
| TestCompletionCallback callback;
|
| HttpResponseInfo response;
|
| BoundNetLog net_log;
|
| - scoped_ptr<SpdyHttpStream> http_stream(new SpdyHttpStream(session_.get()));
|
| + scoped_ptr<SpdyHttpStream> http_stream(
|
| + new SpdyHttpStream(session_.get(), true));
|
| ASSERT_EQ(
|
| OK,
|
| http_stream->InitializeStream(&request, net_log, NULL));
|
| @@ -118,7 +119,7 @@
|
| TestCompletionCallback callback;
|
| HttpResponseInfo response;
|
| BoundNetLog net_log;
|
| - scoped_ptr<SpdyHttpStream> http_stream(new SpdyHttpStream(session_));
|
| + scoped_ptr<SpdyHttpStream> http_stream(new SpdyHttpStream(session_, true));
|
| ASSERT_EQ(
|
| OK,
|
| http_stream->InitializeStream(&request, net_log, NULL));
|
|
|