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

Unified Diff: net/quic/quic_sent_packet_manager.h

Issue 2179713004: Deprecate FLAGS_quic_always_write_queued_retransmissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@128171703
Patch Set: Created 4 years, 5 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_multipath_sent_packet_manager_test.cc ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_sent_packet_manager.h
diff --git a/net/quic/quic_sent_packet_manager.h b/net/quic/quic_sent_packet_manager.h
index b578f599cbb14554ac2f8cabfbfee4b497bb0fc8..02071e1d89c79531051726d9b877544f51c25da1 100644
--- a/net/quic/quic_sent_packet_manager.h
+++ b/net/quic/quic_sent_packet_manager.h
@@ -93,9 +93,6 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager
void OnIncomingAck(const QuicAckFrame& ack_frame,
QuicTime ack_receive_time) override;
- // Returns true if packet |packet_number| is unacked.
- bool IsUnacked(QuicPathId, QuicPacketNumber packet_number) const override;
-
// Requests retransmission of all unacked packets of |retransmission_type|.
// The behavior of this method depends on the value of |retransmission_type|:
// ALL_UNACKED_RETRANSMISSION - All unacked packets will be retransmitted.
@@ -114,13 +111,6 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager
// they don't get retransmitted.
void NeuterUnencryptedPackets() override;
- // Returns true if the unacked packet |packet_number| has retransmittable
- // frames. This will only return false if the packet has been acked, if a
- // previous transmission of this packet was ACK'd, or if this packet has been
- // retransmitted as with different packet number.
- bool HasRetransmittableFrames(QuicPathId,
- QuicPacketNumber packet_number) const override;
-
// Returns true if there are pending retransmissions.
// Not const because retransmissions may be cancelled before returning.
bool HasPendingRetransmissions() const override;
« no previous file with comments | « net/quic/quic_multipath_sent_packet_manager_test.cc ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698