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

Unified Diff: net/quic/core/quic_protocol.h

Issue 2401363004: relnote: Deprecate flag quic_disable_pre_32 (Closed)
Patch Set: remove unused LoadTestCert method Created 4 years, 2 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
« no previous file with comments | « net/quic/core/quic_framer_test.cc ('k') | net/quic/core/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol.h
diff --git a/net/quic/core/quic_protocol.h b/net/quic/core/quic_protocol.h
index ce9fd2591bb1bef1ad344decfced4bbef34428cc..1322240e847f900c99ebb33961ba62fb81dd8950 100644
--- a/net/quic/core/quic_protocol.h
+++ b/net/quic/core/quic_protocol.h
@@ -368,8 +368,6 @@ enum QuicVersion {
// Special case to indicate unknown/unsupported QUIC version.
QUIC_VERSION_UNSUPPORTED = 0,
- 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.
QUIC_VERSION_33 = 33, // Adds diversification nonces.
QUIC_VERSION_34 = 34, // Deprecates entropy, removes private flag from packet
@@ -390,7 +388,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_32};
typedef std::vector<QuicVersion> QuicVersionVector;
@@ -1405,8 +1403,6 @@ class NET_EXPORT_PRIVATE QuicVersionManager {
const QuicVersionVector& GetSupportedVersions();
private:
- // FLAGS_quic_disable_pre_32
- bool disable_pre_32_;
// FLAGS_quic_disable_pre_34
bool disable_pre_34_;
// FLAGS_quic_enable_version_35
« no previous file with comments | « net/quic/core/quic_framer_test.cc ('k') | net/quic/core/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698