diff options
author | rtenneti <rtenneti@chromium.org> | 2015-01-09 12:06:22 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-09 20:08:06 +0000 |
commit | 12fd710c82278246e63fe62bd8901e0a5a76a0ba (patch) | |
tree | adc5887d67627117c66cf944d2daf60c8e68262e | |
parent | 819c4ccd94f77636503f7058fcc423fa0ba32fcf (diff) | |
download | chromium_src-12fd710c82278246e63fe62bd8901e0a5a76a0ba.zip chromium_src-12fd710c82278246e63fe62bd8901e0a5a76a0ba.tar.gz chromium_src-12fd710c82278246e63fe62bd8901e0a5a76a0ba.tar.bz2 |
QUIC - Deleted unused FLAGS_track_retransmission_history flag.
R=rch@chromium.org
Review URL: https://codereview.chromium.org/843673006
Cr-Commit-Position: refs/heads/master@{#310836}
-rw-r--r-- | net/quic/quic_flags.cc | 8 | ||||
-rw-r--r-- | net/quic/quic_flags.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc index 328d3e8..d7c54b1 100644 --- a/net/quic/quic_flags.cc +++ b/net/quic/quic_flags.cc @@ -4,14 +4,6 @@ #include "net/quic/quic_flags.h" -// TODO(rtenneti): Remove this. -// Do not flip this flag until the flakiness of the -// net/tools/quic/end_to_end_test is fixed. -// If true, then QUIC connections will track the retransmission history of a -// packet so that an ack of a previous transmission will ack the data of all -// other transmissions. -bool FLAGS_track_retransmission_history = false; - bool FLAGS_quic_allow_oversized_packets_for_test = false; // When true, the use time based loss detection instead of nack. diff --git a/net/quic/quic_flags.h b/net/quic/quic_flags.h index adbeb89..72789fb 100644 --- a/net/quic/quic_flags.h +++ b/net/quic/quic_flags.h @@ -7,7 +7,6 @@ #include "net/base/net_export.h" -NET_EXPORT_PRIVATE extern bool FLAGS_track_retransmission_history; NET_EXPORT_PRIVATE extern bool FLAGS_quic_allow_oversized_packets_for_test; NET_EXPORT_PRIVATE extern bool FLAGS_quic_use_time_loss_detection; NET_EXPORT_PRIVATE extern bool FLAGS_use_early_return_when_verifying_chlo; |