| Index: net/spdy/spdy_test_util_common.cc
|
| diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
|
| index bbfd86381020c10a47c44b1a8ce094bea9de44b7..c3f7364746aad47859f8fc8b344bdeaea26dadb4 100644
|
| --- a/net/spdy/spdy_test_util_common.cc
|
| +++ b/net/spdy/spdy_test_util_common.cc
|
| @@ -280,12 +280,13 @@ bool GetSpdyPriority(SpdyMajorVersion version,
|
| }
|
|
|
| base::WeakPtr<SpdyStream> CreateStreamSynchronously(
|
| + SpdyStreamType type,
|
| const scoped_refptr<SpdySession>& session,
|
| const GURL& url,
|
| RequestPriority priority,
|
| const BoundNetLog& net_log) {
|
| SpdyStreamRequest stream_request;
|
| - int rv = stream_request.StartRequest(session, url, priority, net_log,
|
| + int rv = stream_request.StartRequest(type, session, url, priority, net_log,
|
| CompletionCallback());
|
| return
|
| (rv == OK) ? stream_request.ReleaseStream() : base::WeakPtr<SpdyStream>();
|
|
|