| Index: net/quic/quic_protocol.h
|
| diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
|
| index a81660757aa1855cee61a9ed72cd1b4a4d255447..e5c72ca8f68c1b6a74743f5a7149f61040abb525 100644
|
| --- a/net/quic/quic_protocol.h
|
| +++ b/net/quic/quic_protocol.h
|
| @@ -474,7 +474,7 @@ AdjustErrorForVersion(QuicRstStreamErrorCode error_code, QuicVersion version);
|
| // These values must remain stable as they are uploaded to UMA histograms.
|
| // To add a new error code, use the current value of QUIC_LAST_ERROR and
|
| // increment QUIC_LAST_ERROR.
|
| -// last value = 77
|
| +// last value = 78
|
| enum QuicErrorCode {
|
| QUIC_NO_ERROR = 0,
|
|
|
| @@ -494,6 +494,8 @@ enum QuicErrorCode {
|
| QUIC_INVALID_STREAM_DATA = 46,
|
| // STREAM frame data is not encrypted.
|
| QUIC_UNENCRYPTED_STREAM_DATA = 61,
|
| + // FEC frame data is not encrypted.
|
| + QUIC_UNENCRYPTED_FEC_DATA = 77,
|
| // RST_STREAM frame data is malformed.
|
| QUIC_INVALID_RST_STREAM_DATA = 6,
|
| // CONNECTION_CLOSE frame data is malformed.
|
| @@ -635,7 +637,7 @@ enum QuicErrorCode {
|
| QUIC_VERSION_NEGOTIATION_MISMATCH = 55,
|
|
|
| // No error. Used as bound while iterating.
|
| - QUIC_LAST_ERROR = 77,
|
| + QUIC_LAST_ERROR = 78,
|
| };
|
|
|
| // Must be updated any time a QuicErrorCode is deprecated.
|
|
|