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

Unified Diff: net/quic/quic_server_session.cc

Issue 1032483003: Deprecate FLAGS_quic_enable_bandwidth_resumption_experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Add_extra_newline_88898832
Patch Set: Created 5 years, 9 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/quic_flags.cc ('k') | net/tools/quic/quic_server_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_server_session.cc
diff --git a/net/quic/quic_server_session.cc b/net/quic/quic_server_session.cc
index 796d53e3729d74ef2d91afa7bcbfcb9b6ee5c599..acd5ceb10848fc68821baa6c4e68c448a43dba89 100644
--- a/net/quic/quic_server_session.cc
+++ b/net/quic/quic_server_session.cc
@@ -47,8 +47,7 @@ void QuicServerSession::OnConfigNegotiated() {
// bandwidth resumption.
const CachedNetworkParameters* cached_network_params =
crypto_stream_->previous_cached_network_params();
- if (FLAGS_quic_enable_bandwidth_resumption_experiment &&
- cached_network_params != nullptr &&
+ if (cached_network_params != nullptr &&
ContainsQuicTag(config()->ReceivedConnectionOptions(), kBWRE) &&
cached_network_params->serving_region() == serving_region_) {
connection()->ResumeConnectionState(*cached_network_params);
« no previous file with comments | « net/quic/quic_flags.cc ('k') | net/tools/quic/quic_server_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698