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

Unified Diff: net/quic/core/congestion_control/cubic_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
Index: net/quic/core/congestion_control/cubic_test.cc
diff --git a/net/quic/core/congestion_control/cubic_test.cc b/net/quic/core/congestion_control/cubic_test.cc
index c7e31266e6b220ee2cf7d2704f8d4a0c6aae4081..47733b7d0877d296da89f8a36eef50421a657525 100644
--- a/net/quic/core/congestion_control/cubic_test.cc
+++ b/net/quic/core/congestion_control/cubic_test.cc
@@ -58,18 +58,6 @@ std::vector<TestParams> GetTestParams() {
for (bool fix_convex_mode : {true, false}) {
for (bool fix_beta_last_max : {true, false}) {
for (bool allow_per_ack_updates : {true, false}) {
- if (!FLAGS_quic_reloadable_flag_quic_fix_cubic_convex_mode &&
- fix_convex_mode) {
- continue;
- }
- if (!FLAGS_quic_reloadable_flag_quic_fix_beta_last_max &&
- fix_beta_last_max) {
- continue;
- }
- if (!FLAGS_quic_reloadable_flag_quic_enable_cubic_per_ack_updates &&
- allow_per_ack_updates) {
- continue;
- }
TestParams param(fix_convex_mode, fix_beta_last_max,
allow_per_ack_updates);
params.push_back(param);
« no previous file with comments | « net/quic/core/congestion_control/cubic_bytes_test.cc ('k') | net/quic/core/congestion_control/send_algorithm_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698