| Index: net/quic/chromium/quic_http_stream.cc
|
| diff --git a/net/quic/chromium/quic_http_stream.cc b/net/quic/chromium/quic_http_stream.cc
|
| index f52e00ed74ad83caa73f86082a29b1f6b99f86ce..78f4bac78906c78fe11095231723f13a1727303a 100644
|
| --- a/net/quic/chromium/quic_http_stream.cc
|
| +++ b/net/quic/chromium/quic_http_stream.cc
|
| @@ -423,6 +423,14 @@ bool QuicHttpStream::GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const {
|
| return true;
|
| }
|
|
|
| +bool QuicHttpStream::GetAlternativeService(
|
| + AlternativeService* alternative_service) const {
|
| + alternative_service->protocol = kProtoQUIC;
|
| + alternative_service->host = server_id_.host();
|
| + alternative_service->port = server_id_.port();
|
| + return true;
|
| +}
|
| +
|
| void QuicHttpStream::PopulateNetErrorDetails(NetErrorDetails* details) {
|
| details->connection_info = ConnectionInfoFromQuicVersion(quic_version_);
|
| if (was_handshake_confirmed_)
|
|
|