| 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 daff299b63777f36699ba447e5d64c508e2d6fe5..3fdc07237c5f01f26623697c5a3611e7272fd942 100644
|
| --- a/net/http/http_stream_factory_impl_job_controller.cc
|
| +++ b/net/http/http_stream_factory_impl_job_controller.cc
|
| @@ -852,13 +852,13 @@ HttpStreamFactoryImpl::JobController::GetAlternativeServiceFor(
|
| if (alternative_service.protocol == UNINITIALIZED_ALTERNATE_PROTOCOL) {
|
| type = NO_ALTERNATIVE_SERVICE;
|
| } else if (alternative_service.protocol == QUIC) {
|
| - if (request_info.url.host() == alternative_service.host) {
|
| + if (request_info.url.host_piece() == alternative_service.host) {
|
| type = QUIC_SAME_DESTINATION;
|
| } else {
|
| type = QUIC_DIFFERENT_DESTINATION;
|
| }
|
| } else {
|
| - if (request_info.url.host() == alternative_service.host) {
|
| + if (request_info.url.host_piece() == alternative_service.host) {
|
| type = NOT_QUIC_SAME_DESTINATION;
|
| } else {
|
| type = NOT_QUIC_DIFFERENT_DESTINATION;
|
|
|