Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: net/quic/quic_protocol.h

Issue 2176323002: Deprecate FLAGS_quic_disable_pre_30. Remove QUIC versions [25-29]. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@127879468
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 8ac3d0518b352f3959a9146d3bb9abf93ce65584..d5e606301aa9e2a6c55e57c177870781e3a1bf9a 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -359,12 +359,6 @@ enum QuicVersion {
// Special case to indicate unknown/unsupported QUIC version.
QUIC_VERSION_UNSUPPORTED = 0,
- QUIC_VERSION_25 = 25, // SPDY/4 header keys, and removal of error_details
- // from QuicRstStreamFrame
- QUIC_VERSION_26 = 26, // In CHLO, send XLCT tag containing hash of leaf cert
- QUIC_VERSION_27 = 27, // Sends a nonce in the SHLO.
- QUIC_VERSION_28 = 28, // Receiver can refuse to create a requested stream.
- QUIC_VERSION_29 = 29, // Server and client honor QUIC_STREAM_NO_ERROR.
QUIC_VERSION_30 = 30, // Add server side support of cert transparency.
QUIC_VERSION_31 = 31, // Adds a hash of the client hello to crypto proof.
QUIC_VERSION_32 = 32, // FEC related fields are removed from wire format.
@@ -384,8 +378,7 @@ enum QuicVersion {
// http://sites/quic/adding-and-removing-versions
static const QuicVersion kSupportedQuicVersions[] = {
QUIC_VERSION_36, QUIC_VERSION_35, QUIC_VERSION_34, QUIC_VERSION_33,
- QUIC_VERSION_32, QUIC_VERSION_31, QUIC_VERSION_30, QUIC_VERSION_29,
- QUIC_VERSION_28, QUIC_VERSION_27, QUIC_VERSION_26, QUIC_VERSION_25};
+ QUIC_VERSION_32, QUIC_VERSION_31, QUIC_VERSION_30};
typedef std::vector<QuicVersion> QuicVersionVector;

Powered by Google App Engine
This is Rietveld 408576698