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

Unified Diff: net/quic/quic_chromium_client_session.cc

Issue 2002083002: Add QuicSentPacketManagerInterface, and QuicSentPacketManager implements it. No functional change e… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/net.gypi ('k') | net/quic/quic_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_chromium_client_session.cc
diff --git a/net/quic/quic_chromium_client_session.cc b/net/quic/quic_chromium_client_session.cc
index 91f763c9d6dcdf6b4186589fe9adbb173342e40d..52a479665740d8b79c2db6889bf000a70c2f0099 100644
--- a/net/quic/quic_chromium_client_session.cc
+++ b/net/quic/quic_chromium_client_session.cc
@@ -839,10 +839,10 @@ void QuicChromiumClientSession::OnConnectionClosed(
connection()->sent_packet_manager().HasUnackedPackets());
UMA_HISTOGRAM_COUNTS(
"Net.QuicSession.TimedOutWithOpenStreams.ConsecutiveRTOCount",
- connection()->sent_packet_manager().consecutive_rto_count());
+ connection()->sent_packet_manager().GetConsecutiveRtoCount());
UMA_HISTOGRAM_COUNTS(
"Net.QuicSession.TimedOutWithOpenStreams.ConsecutiveTLPCount",
- connection()->sent_packet_manager().consecutive_tlp_count());
+ connection()->sent_packet_manager().GetConsecutiveTlpCount());
}
if (connection()->sent_packet_manager().HasUnackedPackets()) {
UMA_HISTOGRAM_TIMES(
« no previous file with comments | « net/net.gypi ('k') | net/quic/quic_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698