| Index: net/http/http_stream_factory_test_util.h
|
| diff --git a/net/http/http_stream_factory_test_util.h b/net/http/http_stream_factory_test_util.h
|
| index d958533c399941dbe9eefdd685d19fe0b880194b..1ee93e7825929ed79c5d7f151460d6a124362c33 100644
|
| --- a/net/http/http_stream_factory_test_util.h
|
| +++ b/net/http/http_stream_factory_test_util.h
|
| @@ -136,7 +136,7 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| TestJobFactory();
|
| ~TestJobFactory() override;
|
|
|
| - HttpStreamFactoryImpl::Job* CreateMainJob(
|
| + std::unique_ptr<HttpStreamFactoryImpl::Job> CreateMainJob(
|
| HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| HttpStreamFactoryImpl::JobType job_type,
|
| HttpNetworkSession* session,
|
| @@ -150,7 +150,7 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| bool enable_ip_based_pooling,
|
| NetLog* net_log) override;
|
|
|
| - HttpStreamFactoryImpl::Job* CreateAltSvcJob(
|
| + std::unique_ptr<HttpStreamFactoryImpl::Job> CreateAltSvcJob(
|
| HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| HttpStreamFactoryImpl::JobType job_type,
|
| HttpNetworkSession* session,
|
| @@ -165,7 +165,7 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| bool enable_ip_based_pooling,
|
| NetLog* net_log) override;
|
|
|
| - HttpStreamFactoryImpl::Job* CreateAltProxyJob(
|
| + std::unique_ptr<HttpStreamFactoryImpl::Job> CreateAltProxyJob(
|
| HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| HttpStreamFactoryImpl::JobType job_type,
|
| HttpNetworkSession* session,
|
|
|