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

Unified Diff: net/quic/quic_crypto_server_stream.cc

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_crypto_server_stream.cc
diff --git a/net/quic/quic_crypto_server_stream.cc b/net/quic/quic_crypto_server_stream.cc
index 6027079ff20e9cfb558e3bb451a8f34d3f53673f..d3f1e031afcc5c1d809dfdaceeb627c527edaabe 100644
--- a/net/quic/quic_crypto_server_stream.cc
+++ b/net/quic/quic_crypto_server_stream.cc
@@ -114,9 +114,7 @@ void QuicCryptoServerStream::OnHandshakeMessage(
QuicCryptoServerStreamBase::OnHandshakeMessage(message);
++num_handshake_messages_;
- // It's only safe to deprecate kFIXD where we have deprecated v25
- bool require_kfixd =
- !FLAGS_quic_deprecate_kfixd || !FLAGS_quic_disable_pre_30;
+ bool require_kfixd = !FLAGS_quic_deprecate_kfixd;
if (require_kfixd && !HasFixedTag(message)) {
CloseConnectionWithDetails(QUIC_CRYPTO_MESSAGE_PARAMETER_NOT_FOUND,

Powered by Google App Engine
This is Rietveld 408576698