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

Unified Diff: net/quic/quic_sent_packet_manager.cc

Issue 837273004: Fixes typo, changing OnSpuriousPacketRetransmition to (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Adds_alarm_FEC_Packet_83543120
Patch Set: Created 5 years, 11 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
Index: net/quic/quic_sent_packet_manager.cc
diff --git a/net/quic/quic_sent_packet_manager.cc b/net/quic/quic_sent_packet_manager.cc
index ed18f4272207bee9f2d19d512e615e4dbc656f60..0692cc332a25d8b252cd956acd3fb282460a85a8 100644
--- a/net/quic/quic_sent_packet_manager.cc
+++ b/net/quic/quic_sent_packet_manager.cc
@@ -405,9 +405,8 @@ void QuicSentPacketManager::RecordSpuriousRetransmissions(
stats_->bytes_spuriously_retransmitted += retransmit_info.bytes_sent;
++stats_->packets_spuriously_retransmitted;
if (debug_delegate_ != nullptr) {
- debug_delegate_->OnSpuriousPacketRetransmition(
- retransmit_info.transmission_type,
- retransmit_info.bytes_sent);
+ debug_delegate_->OnSpuriousPacketRetransmission(
+ retransmit_info.transmission_type, retransmit_info.bytes_sent);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698