| 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 1ee93e7825929ed79c5d7f151460d6a124362c33..c53c803763056ef7ff3f7058d09f6ce438a9ac27 100644
|
| --- a/net/http/http_stream_factory_test_util.h
|
| +++ b/net/http/http_stream_factory_test_util.h
|
| @@ -100,7 +100,6 @@ class MockHttpStreamFactoryImplJob : public HttpStreamFactoryImpl::Job {
|
| HttpNetworkSession* session,
|
| const HttpRequestInfo& request_info,
|
| RequestPriority priority,
|
| - ProxyInfo proxy_info,
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HostPortPair destination,
|
| @@ -113,7 +112,6 @@ class MockHttpStreamFactoryImplJob : public HttpStreamFactoryImpl::Job {
|
| HttpNetworkSession* session,
|
| const HttpRequestInfo& request_info,
|
| RequestPriority priority,
|
| - ProxyInfo proxy_info,
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HostPortPair destination,
|
| @@ -136,13 +134,12 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| TestJobFactory();
|
| ~TestJobFactory() override;
|
|
|
| - std::unique_ptr<HttpStreamFactoryImpl::Job> CreateMainJob(
|
| + HttpStreamFactoryImpl::Job* CreateJob(
|
| HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| HttpStreamFactoryImpl::JobType job_type,
|
| HttpNetworkSession* session,
|
| const HttpRequestInfo& request_info,
|
| RequestPriority priority,
|
| - const ProxyInfo& proxy_info,
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HostPortPair destination,
|
| @@ -150,13 +147,12 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| bool enable_ip_based_pooling,
|
| NetLog* net_log) override;
|
|
|
| - std::unique_ptr<HttpStreamFactoryImpl::Job> CreateAltSvcJob(
|
| + HttpStreamFactoryImpl::Job* CreateJob(
|
| HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| HttpStreamFactoryImpl::JobType job_type,
|
| HttpNetworkSession* session,
|
| const HttpRequestInfo& request_info,
|
| RequestPriority priority,
|
| - const ProxyInfo& proxy_info,
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HostPortPair destination,
|
| @@ -165,13 +161,12 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| bool enable_ip_based_pooling,
|
| NetLog* net_log) override;
|
|
|
| - std::unique_ptr<HttpStreamFactoryImpl::Job> CreateAltProxyJob(
|
| + HttpStreamFactoryImpl::Job* CreateJob(
|
| HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| HttpStreamFactoryImpl::JobType job_type,
|
| HttpNetworkSession* session,
|
| const HttpRequestInfo& request_info,
|
| RequestPriority priority,
|
| - const ProxyInfo& proxy_info,
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HostPortPair destination,
|
|
|