Index: net/spdy/spdy_stream_spdy2_unittest.cc |
diff --git a/net/spdy/spdy_stream_spdy2_unittest.cc b/net/spdy/spdy_stream_spdy2_unittest.cc |
index 755e55cde41f8c5229198fd9fa883f51acf6b3cb..564215e1d4c43accbf40784985882b9d8210af55 100644 |
--- a/net/spdy/spdy_stream_spdy2_unittest.cc |
+++ b/net/spdy/spdy_stream_spdy2_unittest.cc |
@@ -10,6 +10,7 @@ |
#include "base/string_piece.h" |
#include "net/base/completion_callback.h" |
#include "net/base/net_log_unittest.h" |
+#include "net/base/request_priority.h" |
#include "net/spdy/buffered_spdy_framer.h" |
#include "net/spdy/spdy_stream.h" |
#include "net/spdy/spdy_http_utils.h" |
@@ -233,9 +234,14 @@ TEST_F(SpdyStreamSpdy2Test, PushedStream) { |
BoundNetLog net_log; |
// Conjure up a stream. |
- scoped_refptr<SpdyStream> stream = new SpdyStream(spdy_session, |
- true, |
- net_log); |
+ scoped_refptr<SpdyStream> stream = |
+ new SpdyStream(spdy_session, |
+ std::string(), |
+ DEFAULT_PRIORITY, |
+ kSpdyStreamInitialWindowSize, |
+ kSpdyStreamInitialWindowSize, |
+ true, |
+ net_log); |
stream->set_stream_id(2); |
EXPECT_FALSE(stream->response_received()); |
EXPECT_FALSE(stream->HasUrl()); |