| 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 a8de702be927456d9d3cb1b36c7e2596b06cb1bb..5a671010425a5c36000c7c41bfc86e32e949e54d 100644
|
| --- a/net/http/http_stream_factory_test_util.h
|
| +++ b/net/http/http_stream_factory_test_util.h
|
| @@ -97,6 +97,7 @@ 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,
|
| @@ -109,6 +110,7 @@ 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,
|
| @@ -131,12 +133,13 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| TestJobFactory();
|
| ~TestJobFactory() override;
|
|
|
| - HttpStreamFactoryImpl::Job* CreateJob(
|
| + HttpStreamFactoryImpl::Job* CreateMainJob(
|
| 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,
|
| @@ -144,12 +147,13 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| bool enable_ip_based_pooling,
|
| NetLog* net_log) override;
|
|
|
| - HttpStreamFactoryImpl::Job* CreateJob(
|
| + HttpStreamFactoryImpl::Job* CreateAltSvcJob(
|
| 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,
|
| @@ -158,12 +162,13 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| bool enable_ip_based_pooling,
|
| NetLog* net_log) override;
|
|
|
| - HttpStreamFactoryImpl::Job* CreateJob(
|
| + HttpStreamFactoryImpl::Job* CreateAltProxyJob(
|
| 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,
|
|
|