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

Unified Diff: net/quic/core/quic_sent_packet_manager.cc

Issue 2671303003: Deprecate FLAGS_quic_reloadable_flag_quic_more_conservative_retransmission_alarm (Closed)
Patch Set: Deprecate FLAGS_quic_reloadable_flag_quic_more_conservative_retransmission_alarm Created 3 years, 10 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/quic/core/quic_sent_packet_manager.cc
diff --git a/net/quic/core/quic_sent_packet_manager.cc b/net/quic/core/quic_sent_packet_manager.cc
index 852fa0963cea8c605a6d00d7cd251f215a9d1c73..3b601e25365ef5a4dd590343c27b8f8c0adde343 100644
--- a/net/quic/core/quic_sent_packet_manager.cc
+++ b/net/quic/core/quic_sent_packet_manager.cc
@@ -781,8 +781,7 @@ const QuicTime QuicSentPacketManager::GetRetransmissionTime() const {
pending_timer_transmission_count_ > 0) {
return QuicTime::Zero();
}
- if (FLAGS_quic_reloadable_flag_quic_more_conservative_retransmission_alarm &&
- !unacked_packets_.HasUnackedRetransmittableFrames()) {
+ if (!unacked_packets_.HasUnackedRetransmittableFrames()) {
return QuicTime::Zero();
}
switch (GetRetransmissionMode()) {
« 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