| Index: net/http/http_stream_factory_impl_job.cc
|
| diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
|
| index f4fbca1db0c14352207dc52803e3429a2f0d0731..f99304dfbaad0294ba890deee1d38dc33eceacbc 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -1007,10 +1007,11 @@ int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
| origin_host = origin_url_.host();
|
| ssl_config = &server_ssl_config_;
|
| }
|
| - int rv =
|
| - quic_request_.Request(destination, request_info_.privacy_mode,
|
| - ssl_config->GetCertVerifyFlags(), origin_host,
|
| - request_info_.method, net_log_, io_callback_);
|
| +
|
| + int rv = quic_request_.Request(
|
| + destination, request_info_.privacy_mode,
|
| + ssl_config->GetCertVerifyFlags(), origin_host, request_info_.method,
|
| + request_info_.url.spec(), net_log_, io_callback_);
|
| if (rv == OK) {
|
| using_existing_quic_session_ = true;
|
| } else {
|
|
|