| Index: net/http/http_stream_factory_impl_job_controller.cc
|
| diff --git a/net/http/http_stream_factory_impl_job_controller.cc b/net/http/http_stream_factory_impl_job_controller.cc
|
| index 4e3aa673f3e74cfd75524af4417350c9712096e2..c2ca3c9ef0745d62ea3d244721dd9b622deb51c4 100644
|
| --- a/net/http/http_stream_factory_impl_job_controller.cc
|
| +++ b/net/http/http_stream_factory_impl_job_controller.cc
|
| @@ -937,7 +937,7 @@ HttpStreamFactoryImpl::JobController::GetAlternativeServiceForInternal(
|
| }
|
|
|
| quic_all_broken = false;
|
| - if (!session_->params().enable_quic)
|
| + if (!session_->params().enable_quic_for_new_streams())
|
| continue;
|
|
|
| if (!IsQuicWhitelistedForHost(origin.host()))
|
| @@ -1037,7 +1037,7 @@ bool HttpStreamFactoryImpl::JobController::
|
|
|
| if (alternative_proxy_server->is_quic()) {
|
| // Check that QUIC is enabled globally, and it is not disabled.
|
| - if (!session_->params().enable_quic ||
|
| + if (!session_->params().enable_quic_for_new_streams() ||
|
| session_->quic_stream_factory()->IsQuicDisabled()) {
|
| return false;
|
| }
|
|
|