Chromium Code Reviews| Index: net/socket/next_proto.h |
| diff --git a/net/socket/next_proto.h b/net/socket/next_proto.h |
| index e35d5bd6acaa896e27650b14555a083164f55345..c12a45bcfde9cae8b9c0068a7b14b91838b14dbd 100644 |
| --- a/net/socket/next_proto.h |
| +++ b/net/socket/next_proto.h |
| @@ -28,9 +28,11 @@ enum NextProto { |
| kProtoSPDYHistogramOffset = kProtoDeprecatedSPDY2, |
| kProtoSPDY3 = 101, |
| kProtoSPDY31 = 102, |
|
Ryan Hamilton
2014/11/12 23:32:55
Should we consider renaming this to be 3_1 to matc
Bence
2014/11/13 02:05:05
This is not crucial: 1 is a minor version number,
|
| - // HTTP/2 draft-14 was 103, |
| - kProtoSPDY4 = 104, // SPDY4 is HTTP/2 draft-15. |
| - kProtoSPDYMaximumVersion = kProtoSPDY4, |
| + kProtoSPDY4_14 = 103, // HTTP/2 draft-14 |
| + kProtoSPDY4MinimumVersion = kProtoSPDY4_14, |
| + kProtoSPDY4_15 = 104, // HTTP/2 draft-15 |
| + kProtoSPDY4MaximumVersion = kProtoSPDY4_15, |
| + kProtoSPDYMaximumVersion = kProtoSPDY4MaximumVersion, |
| kProtoQUIC1SPDY3 = 200, |