| Index: net/http/http_stream_factory_impl_job_controller_unittest.cc
|
| diff --git a/net/http/http_stream_factory_impl_job_controller_unittest.cc b/net/http/http_stream_factory_impl_job_controller_unittest.cc
|
| index ccbcc268e4a6ff5c994e82ad8500ba092795f98b..dad4a1add61b761e421953a9127869bd9ca9465f 100644
|
| --- a/net/http/http_stream_factory_impl_job_controller_unittest.cc
|
| +++ b/net/http/http_stream_factory_impl_job_controller_unittest.cc
|
| @@ -218,10 +218,10 @@ TEST_F(HttpStreamFactoryImplJobControllerTest,
|
| BoundNetLog(), HttpStreamRequest::HTTP_STREAM,
|
| DEFAULT_PRIORITY, SSLConfig(), SSLConfig()));
|
|
|
| - // There's no other alternative job. Thus when a stream is ready, it should
|
| + // There's no other alternative job. Thus when stream is ready, it should
|
| // notify Request.
|
| HttpStream* http_stream =
|
| - new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false, false);
|
| + new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false);
|
| job_factory_.main_job()->SetStream(http_stream);
|
|
|
| EXPECT_CALL(request_delegate_, OnStreamReady(_, _, http_stream))
|
| @@ -339,7 +339,7 @@ TEST_F(HttpStreamFactoryImplJobControllerTest,
|
| // to Request. The alternative job will mark the main job complete and gets
|
| // orphaned.
|
| HttpStream* http_stream =
|
| - new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false, false);
|
| + new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false);
|
| job_factory_.main_job()->SetStream(http_stream);
|
|
|
| EXPECT_CALL(request_delegate_, OnStreamReady(_, _, http_stream))
|
| @@ -398,7 +398,7 @@ TEST_F(HttpStreamFactoryImplJobControllerTest,
|
|
|
| // |alternative_job| succeeds and should report status to Request.
|
| HttpStream* http_stream =
|
| - new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false, false);
|
| + new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false);
|
| job_factory_.alternative_job()->SetStream(http_stream);
|
|
|
| EXPECT_CALL(request_delegate_, OnStreamReady(_, _, http_stream))
|
| @@ -449,7 +449,7 @@ TEST_F(HttpStreamFactoryImplJobControllerTest, GetLoadStateAfterMainJobFailed) {
|
|
|
| // |alternative_job| succeeds and should report status to Request.
|
| HttpStream* http_stream =
|
| - new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false, false);
|
| + new HttpBasicStream(base::MakeUnique<ClientSocketHandle>(), false);
|
| job_factory_.alternative_job()->SetStream(http_stream);
|
|
|
| EXPECT_CALL(request_delegate_, OnStreamReady(_, _, http_stream))
|
|
|