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

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

Issue 2916033003: Landing Recent QUIC changes until 03:18 AM, May 28, UTC (Closed)
Patch Set: A few more EXPORTs. Created 3 years, 7 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/frames/quic_ack_frame.h ('k') | net/quic/core/frames/quic_frames_test.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.cc
diff --git a/net/quic/core/frames/quic_ack_frame.cc b/net/quic/core/frames/quic_ack_frame.cc
index 8dcb1373c64c6e4dfb371b1b165ea074a556b52e..0741a1526eabf6e15923c5dc9f1a57c667ece083 100644
--- a/net/quic/core/frames/quic_ack_frame.cc
+++ b/net/quic/core/frames/quic_ack_frame.cc
@@ -80,13 +80,6 @@ void PacketNumberQueue::RemoveSmallestInterval() {
packet_number_intervals_.Difference(*packet_number_intervals_.begin());
}
-void PacketNumberQueue::Complement() {
- if (Empty()) {
- return;
- }
- packet_number_intervals_.Complement(Min(), Max() + 1);
-}
-
bool PacketNumberQueue::Contains(QuicPacketNumber packet_number) const {
return packet_number_intervals_.Contains(packet_number);
}
« no previous file with comments | « net/quic/core/frames/quic_ack_frame.h ('k') | net/quic/core/frames/quic_frames_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698