| Index: net/spdy/spdy_network_transaction_unittest.cc
|
| diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc
|
| index 46cebe3f59384038ca741b61f6e87bd0b004ad1a..8b95b722b8bca00b92e33493c872b4d6de4e4f98 100644
|
| --- a/net/spdy/spdy_network_transaction_unittest.cc
|
| +++ b/net/spdy/spdy_network_transaction_unittest.cc
|
| @@ -2466,8 +2466,11 @@ TEST_P(SpdyNetworkTransactionTest, RedirectGetRequest) {
|
| TestDelegate d;
|
| {
|
| SpdyURLRequestContext spdy_url_request_context(GetParam().protocol);
|
| - net::URLRequest r(
|
| - GURL("http://www.google.com/"), &d, &spdy_url_request_context);
|
| + net::URLRequest r(GURL("http://www.google.com/"),
|
| + DEFAULT_PRIORITY,
|
| + &d,
|
| + &spdy_url_request_context,
|
| + NULL);
|
| spdy_url_request_context.socket_factory().
|
| AddSocketDataProvider(&data);
|
| spdy_url_request_context.socket_factory().
|
| @@ -2559,8 +2562,11 @@ TEST_P(SpdyNetworkTransactionTest, RedirectServerPush) {
|
| TestDelegate d2;
|
| SpdyURLRequestContext spdy_url_request_context(GetParam().protocol);
|
| {
|
| - net::URLRequest r(
|
| - GURL("http://www.google.com/"), &d, &spdy_url_request_context);
|
| + net::URLRequest r(GURL("http://www.google.com/"),
|
| + DEFAULT_PRIORITY,
|
| + &d,
|
| + &spdy_url_request_context,
|
| + NULL);
|
| spdy_url_request_context.socket_factory().
|
| AddSocketDataProvider(&data);
|
|
|
| @@ -2571,8 +2577,11 @@ TEST_P(SpdyNetworkTransactionTest, RedirectServerPush) {
|
| std::string contents("hello!");
|
| EXPECT_EQ(contents, d.data_received());
|
|
|
| - net::URLRequest r2(
|
| - GURL("http://www.google.com/foo.dat"), &d2, &spdy_url_request_context);
|
| + net::URLRequest r2(GURL("http://www.google.com/foo.dat"),
|
| + DEFAULT_PRIORITY,
|
| + &d2,
|
| + &spdy_url_request_context,
|
| + NULL);
|
| spdy_url_request_context.socket_factory().
|
| AddSocketDataProvider(&data2);
|
|
|
|
|