| Index: net/http/http_server_properties.cc
|
| diff --git a/net/http/http_server_properties.cc b/net/http/http_server_properties.cc
|
| index 1e5471c5e0c50be122241a1717a1eeed6645ee8f..2d7bcecc1cf7e2a68d8f1263452c4887ae409255 100644
|
| --- a/net/http/http_server_properties.cc
|
| +++ b/net/http/http_server_properties.cc
|
| @@ -92,6 +92,12 @@ std::string AlternativeServiceInfo::ToString() const {
|
| exploded.day_of_month, exploded.hour, exploded.minute, exploded.second);
|
| }
|
|
|
| +std::ostream& operator<<(std::ostream& os,
|
| + const AlternativeService& alternative_service) {
|
| + os << alternative_service.ToString();
|
| + return os;
|
| +}
|
| +
|
| // static
|
| void HttpServerProperties::ForceHTTP11(SSLConfig* ssl_config) {
|
| ssl_config->alpn_protos.clear();
|
|
|