| Index: net/http/http_stream_factory_impl.cc
|
| diff --git a/net/http/http_stream_factory_impl.cc b/net/http/http_stream_factory_impl.cc
|
| index 28fa8aa57c29814275666e1824debdb88f3a32ff..78ea750e9e735ace82fc64d0e2fc3e6f0098e2f3 100644
|
| --- a/net/http/http_stream_factory_impl.cc
|
| +++ b/net/http/http_stream_factory_impl.cc
|
| @@ -187,10 +187,11 @@ AlternativeService HttpStreamFactoryImpl::GetAlternativeServiceFor(
|
| return AlternativeService();
|
|
|
| HostPortPair origin = HostPortPair::FromURL(original_url);
|
| + SchemeOriginPair scheme_origin(original_url.scheme(), origin);
|
| HttpServerProperties& http_server_properties =
|
| *session_->http_server_properties();
|
| const AlternativeServiceVector alternative_service_vector =
|
| - http_server_properties.GetAlternativeServices(origin);
|
| + http_server_properties.GetAlternativeServices(scheme_origin);
|
| if (alternative_service_vector.empty())
|
| return AlternativeService();
|
|
|
|
|