| Index: net/http/http_stream_factory_impl_request_unittest.cc
|
| diff --git a/net/http/http_stream_factory_impl_request_unittest.cc b/net/http/http_stream_factory_impl_request_unittest.cc
|
| index 65a963747f77af652082dba7f1ac8167d1c5f8f5..5b37fd04db34ee65f4332ea2c3440c997b39709c 100644
|
| --- a/net/http/http_stream_factory_impl_request_unittest.cc
|
| +++ b/net/http/http_stream_factory_impl_request_unittest.cc
|
| @@ -73,14 +73,10 @@ TEST_P(HttpStreamFactoryImplRequestTest, SetPriority) {
|
| HttpStreamFactoryImpl::Request request(
|
| GURL(), factory, &request_delegate, NULL, BoundNetLog());
|
|
|
| - HttpStreamFactoryImpl::Job* job =
|
| - new HttpStreamFactoryImpl::Job(factory,
|
| - session.get(),
|
| - HttpRequestInfo(),
|
| - DEFAULT_PRIORITY,
|
| - SSLConfig(),
|
| - SSLConfig(),
|
| - NULL);
|
| + // Default constructed AlternativeService for non alternative Job.
|
| + HttpStreamFactoryImpl::Job* job = new HttpStreamFactoryImpl::Job(
|
| + factory, session.get(), HttpRequestInfo(), DEFAULT_PRIORITY, SSLConfig(),
|
| + SSLConfig(), AlternativeService(), NULL);
|
| request.AttachJob(job);
|
| EXPECT_EQ(DEFAULT_PRIORITY, job->priority());
|
|
|
|
|