Index: net/http/http_stream_factory_test_util.cc |
diff --git a/net/http/http_stream_factory_test_util.cc b/net/http/http_stream_factory_test_util.cc |
index ca26a986d507b817acd308fea74ff9edc9959325..05b197db91fda804cde8cc085234a956d3b2f51a 100644 |
--- a/net/http/http_stream_factory_test_util.cc |
+++ b/net/http/http_stream_factory_test_util.cc |
@@ -46,6 +46,7 @@ MockHttpStreamFactoryImplJob::MockHttpStreamFactoryImplJob( |
HostPortPair destination, |
GURL origin_url, |
AlternativeService alternative_service, |
+ const ProxyServer& alternative_proxy_server, |
NetLog* net_log) |
: HttpStreamFactoryImpl::Job(delegate, |
job_type, |
@@ -57,6 +58,7 @@ MockHttpStreamFactoryImplJob::MockHttpStreamFactoryImplJob( |
destination, |
origin_url, |
alternative_service, |
+ alternative_proxy_server, |
net_log) {} |
MockHttpStreamFactoryImplJob::~MockHttpStreamFactoryImplJob() {} |
@@ -102,11 +104,13 @@ HttpStreamFactoryImpl::Job* TestJobFactory::CreateJob( |
HostPortPair destination, |
GURL origin_url, |
AlternativeService alternative_service, |
+ const ProxyServer& alternative_proxy_server, |
NetLog* net_log) { |
DCHECK(!alternative_job_); |
alternative_job_ = new MockHttpStreamFactoryImplJob( |
delegate, job_type, session, request_info, priority, SSLConfig(), |
- SSLConfig(), destination, origin_url, alternative_service, nullptr); |
+ SSLConfig(), destination, origin_url, alternative_service, |
+ alternative_proxy_server, nullptr); |
return alternative_job_; |
} |