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

Unified Diff: net/quic/quic_unacked_packet_map.cc

Issue 180723003: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unintialized memory error Created 6 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/quic_session.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_unacked_packet_map.cc
diff --git a/net/quic/quic_unacked_packet_map.cc b/net/quic/quic_unacked_packet_map.cc
index a9e2d1ba3137efce4774d18c4e615ad67df25aa2..bcafa5635c2c2dedf6e880691fe39d6480fc0d32 100644
--- a/net/quic/quic_unacked_packet_map.cc
+++ b/net/quic/quic_unacked_packet_map.cc
@@ -156,7 +156,6 @@ void QuicUnackedPacketMap::NackPacket(QuicPacketSequenceNumber sequence_number,
void QuicUnackedPacketMap::RemovePacket(
QuicPacketSequenceNumber sequence_number) {
- DVLOG(1) << __FUNCTION__ << " " << sequence_number;
UnackedPacketMap::iterator it = unacked_packets_.find(sequence_number);
if (it == unacked_packets_.end()) {
LOG(DFATAL) << "packet is not unacked: " << sequence_number;
@@ -175,8 +174,6 @@ void QuicUnackedPacketMap::RemovePacket(
void QuicUnackedPacketMap::NeuterPacket(
QuicPacketSequenceNumber sequence_number) {
- DVLOG(1) << __FUNCTION__ << " " << sequence_number << " pending? "
- << unacked_packets_[sequence_number].pending;
UnackedPacketMap::iterator it = unacked_packets_.find(sequence_number);
if (it == unacked_packets_.end()) {
LOG(DFATAL) << "packet is not unacked: " << sequence_number;
« no previous file with comments | « net/quic/quic_session.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698