| Index: net/socket/next_proto.h
|
| diff --git a/net/socket/next_proto.h b/net/socket/next_proto.h
|
| index 32fbff7aec3edf90722d6f7c8a36893c290d2fa6..04ecc0f6270df52eb9e56bea4c1938a1ec87e05e 100644
|
| --- a/net/socket/next_proto.h
|
| +++ b/net/socket/next_proto.h
|
| @@ -14,6 +14,7 @@ namespace net {
|
| enum NextProto {
|
| kProtoUnknown = 0,
|
| kProtoHTTP11 = 1,
|
| + kProtoMinimumVersion = kProtoHTTP11,
|
|
|
| kProtoSPDY1 = 2,
|
| kProtoSPDYMinimumVersion = kProtoSPDY1,
|
| @@ -24,7 +25,7 @@ enum NextProto {
|
| kProtoSPDY4a2 = 7,
|
| kProtoSPDYMaximumVersion = kProtoSPDY4a2,
|
|
|
| - kProtoMaximumVersion = 7,
|
| + kProtoMaximumVersion = kProtoSPDYMaximumVersion,
|
| };
|
|
|
| } // namespace net
|
|
|