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

Unified Diff: net/quic/core/frames/quic_ack_frame.h

Issue 2963063002: Removing NackPackets from gfe/quic/core/quic_connection_test.cc Removing the Remove functions from … (Closed)
Patch Set: Rebase 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 | « no previous file | net/quic/core/frames/quic_ack_frame.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/frames/quic_ack_frame.h
diff --git a/net/quic/core/frames/quic_ack_frame.h b/net/quic/core/frames/quic_ack_frame.h
index 80201599ac03fc4d54581cc570b4c10ad594f2d2..a4dc93df5ba9d27a2e30d30d7200e07ae2155287 100644
--- a/net/quic/core/frames/quic_ack_frame.h
+++ b/net/quic/core/frames/quic_ack_frame.h
@@ -38,13 +38,6 @@ class QUIC_EXPORT_PRIVATE PacketNumberQueue {
// is undefined behavior to call this with |higher| < |lower|.
void Add(QuicPacketNumber lower, QuicPacketNumber higher);
- // Removes |packet_number| from the set of packets in the queue.
- void RemoveTestOnly(QuicPacketNumber packet_number);
-
- // Removes packets numbers between [lower, higher) to the set of packets in
- // the queue. It is undefined behavior to call this with |higher| < |lower|.
- void RemoveTestOnly(QuicPacketNumber lower, QuicPacketNumber higher);
-
// Removes packets with values less than |higher| from the set of packets in
// the queue. Returns true if packets were removed.
bool RemoveUpTo(QuicPacketNumber higher);
« no previous file with comments | « no previous file | net/quic/core/frames/quic_ack_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698