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

Unified Diff: net/tools/quic/end_to_end_test.cc

Issue 2968553002: Deprecate flags for Cubic fixes: FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, gfe2_reloadable… (Closed)
Patch Set: Created 3 years, 6 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_flags_list.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index ccc3f77ebf4351a83d4267a8c041b1c0f5ba70b2..e7ce866d53ca48e9f2073eff534af8d5d0e40559 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -384,16 +384,13 @@ class EndToEndTest : public QuicTestWithParam<TestParams> {
// TODO(nimia): Consider setting the congestion control algorithm for the
// client as well according to the test parameter.
copt.push_back(GetParam().congestion_control_tag);
- if (GetParam().congestion_control_tag == kQBIC &&
- FLAGS_quic_reloadable_flag_quic_fix_cubic_convex_mode) {
+ if (GetParam().congestion_control_tag == kQBIC) {
copt.push_back(kCCVX);
}
- if (GetParam().congestion_control_tag == kQBIC &&
- FLAGS_quic_reloadable_flag_quic_fix_cubic_bytes_quantization) {
+ if (GetParam().congestion_control_tag == kQBIC) {
copt.push_back(kCBQT);
}
- if (GetParam().congestion_control_tag == kQBIC &&
- FLAGS_quic_reloadable_flag_quic_enable_cubic_per_ack_updates) {
+ if (GetParam().congestion_control_tag == kQBIC) {
copt.push_back(kCPAU);
}
if (GetParam().congestion_control_tag == kTPCC &&
« no previous file with comments | « net/quic/core/quic_flags_list.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698