diff options
Diffstat (limited to 'net/quic')
-rw-r--r-- | net/quic/congestion_control/tcp_cubic_sender.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/quic/congestion_control/tcp_cubic_sender.cc b/net/quic/congestion_control/tcp_cubic_sender.cc index ef34e3f..36164b1 100644 --- a/net/quic/congestion_control/tcp_cubic_sender.cc +++ b/net/quic/congestion_control/tcp_cubic_sender.cc @@ -6,6 +6,8 @@ #include <algorithm> +#include "base/metrics/histogram.h" + namespace net { namespace { @@ -44,6 +46,7 @@ TcpCubicSender::TcpCubicSender( } TcpCubicSender::~TcpCubicSender() { + UMA_HISTOGRAM_COUNTS("Net.QuicSession.FinalTcpCwnd", congestion_window_); } void TcpCubicSender::OnIncomingQuicCongestionFeedbackFrame( |