| 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 7c90ebe4699f12473e16ed58d51ede01a47cdb22..91551efd0ec40328ac38459d78cf00859fb4d6c3 100644
|
| --- a/net/http/http_stream_factory_test_util.h
|
| +++ b/net/http/http_stream_factory_test_util.h
|
| @@ -12,6 +12,7 @@
|
| #include "net/http/http_stream_factory_impl_job.h"
|
| #include "net/http/http_stream_factory_impl_job_controller.h"
|
| #include "net/proxy/proxy_info.h"
|
| +#include "net/proxy/proxy_server.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
|
|
| using testing::_;
|
| @@ -112,6 +113,7 @@ class MockHttpStreamFactoryImplJob : public HttpStreamFactoryImpl::Job {
|
| HostPortPair destination,
|
| GURL origin_url,
|
| AlternativeService alternative_service,
|
| + const ProxyServer& alternative_proxy_server,
|
| NetLog* net_log);
|
|
|
| ~MockHttpStreamFactoryImplJob() override;
|
| @@ -154,6 +156,19 @@ class TestJobFactory : public HttpStreamFactoryImpl::JobFactory {
|
| AlternativeService alternative_service,
|
| NetLog* net_log) override;
|
|
|
| + HttpStreamFactoryImpl::Job* CreateJob(
|
| + HttpStreamFactoryImpl::Job::Delegate* delegate,
|
| + HttpStreamFactoryImpl::JobType job_type,
|
| + HttpNetworkSession* session,
|
| + const HttpRequestInfo& request_info,
|
| + RequestPriority priority,
|
| + const SSLConfig& server_ssl_config,
|
| + const SSLConfig& proxy_ssl_config,
|
| + HostPortPair destination,
|
| + GURL origin_url,
|
| + const ProxyServer& alternative_proxy_server,
|
| + NetLog* net_log) override;
|
| +
|
| MockHttpStreamFactoryImplJob* main_job() const { return main_job_; }
|
| MockHttpStreamFactoryImplJob* alternative_job() const {
|
| return alternative_job_;
|
|
|