| Index: net/http/http_server_properties.cc
|
| diff --git a/net/http/http_server_properties.cc b/net/http/http_server_properties.cc
|
| index 34d1617765b95ea634d0b2041c1542841cbab46f..9758b23f90640dba0617ea816520b3fe34976784 100644
|
| --- a/net/http/http_server_properties.cc
|
| +++ b/net/http/http_server_properties.cc
|
| @@ -17,7 +17,7 @@ const char* const kAlternateProtocolStrings[] = {
|
| "npn-spdy/2",
|
| "npn-spdy/3",
|
| "npn-spdy/3.1",
|
| - "quic/1"
|
| + "quic"
|
| };
|
| const char kBrokenAlternateProtocol[] = "Broken";
|
|
|
| @@ -26,7 +26,7 @@ const char* AlternateProtocolToString(AlternateProtocol protocol) {
|
| case NPN_SPDY_1:
|
| case NPN_SPDY_2:
|
| case NPN_SPDY_3:
|
| - case QUIC_1:
|
| + case QUIC:
|
| DCHECK_LT(static_cast<size_t>(protocol),
|
| arraysize(kAlternateProtocolStrings));
|
| return kAlternateProtocolStrings[protocol];
|
|
|