| Index: net/http/http_server_properties.cc
|
| diff --git a/net/http/http_server_properties.cc b/net/http/http_server_properties.cc
|
| index 60084eabb77cc30bf4b55154edf2a30ce6659ffa..f0021027f4af4e00fde0d0d230496ab426381798 100644
|
| --- a/net/http/http_server_properties.cc
|
| +++ b/net/http/http_server_properties.cc
|
| @@ -101,10 +101,8 @@ AlternateProtocol AlternateProtocolFromNextProto(NextProto next_proto) {
|
| }
|
|
|
| std::string AlternateProtocolInfo::ToString() const {
|
| - return base::StringPrintf("%d:%s p=%f%s", port,
|
| - AlternateProtocolToString(protocol),
|
| - probability,
|
| - is_broken ? " (broken)" : "");
|
| + return base::StringPrintf("%d:%s p=%f", port,
|
| + AlternateProtocolToString(protocol), probability);
|
| }
|
|
|
| // static
|
|
|