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

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

Issue 2962043002: The Remove functions in quic_ack_frame.cc are renamed RemoveTestOnly. (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 db332485882c11e11e6bc7e4c21ffb11edb6c932..80201599ac03fc4d54581cc570b4c10ad594f2d2 100644
--- a/net/quic/core/frames/quic_ack_frame.h
+++ b/net/quic/core/frames/quic_ack_frame.h
@@ -39,11 +39,11 @@ class QUIC_EXPORT_PRIVATE PacketNumberQueue {
void Add(QuicPacketNumber lower, QuicPacketNumber higher);
// Removes |packet_number| from the set of packets in the queue.
- void Remove(QuicPacketNumber packet_number);
+ 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 Remove(QuicPacketNumber lower, QuicPacketNumber higher);
+ 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.
« 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