| Index: net/quic/quic_protocol.h
|
| diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
|
| index ee2c7e104953a5c40e793d7d7d00e41bb0cb0024..81c87c7e917ffce4fc8655ed44d341b80ecb5b43 100644
|
| --- a/net/quic/quic_protocol.h
|
| +++ b/net/quic/quic_protocol.h
|
| @@ -310,7 +310,6 @@ enum QuicVersion {
|
| // Special case to indicate unknown/unsupported QUIC version.
|
| QUIC_VERSION_UNSUPPORTED = 0,
|
|
|
| - QUIC_VERSION_19 = 19, // Connection level flow control.
|
| QUIC_VERSION_21 = 21, // Headers/crypto streams are flow controlled.
|
| QUIC_VERSION_22 = 22, // Send Server Config Update messages on crypto stream.
|
| QUIC_VERSION_23 = 23, // Timestamp in the ack frame.
|
| @@ -324,8 +323,7 @@ enum QuicVersion {
|
| // IMPORTANT: if you are adding to this list, follow the instructions at
|
| // http://sites/quic/adding-and-removing-versions
|
| static const QuicVersion kSupportedQuicVersions[] = {QUIC_VERSION_23,
|
| - QUIC_VERSION_22,
|
| - QUIC_VERSION_19};
|
| + QUIC_VERSION_22};
|
|
|
| typedef std::vector<QuicVersion> QuicVersionVector;
|
|
|
|
|