Index: net/quic/quic_connection_logger.h |
diff --git a/net/quic/quic_connection_logger.h b/net/quic/quic_connection_logger.h |
index 132a9ea68bb9e4dcbcd8db970e857a340895dc30..d2efd0697b2a382b36c08f4c8079492b4e93c00b 100644 |
--- a/net/quic/quic_connection_logger.h |
+++ b/net/quic/quic_connection_logger.h |
@@ -123,6 +123,13 @@ class NET_EXPORT_PRIVATE QuicConnectionLogger |
// histograms for specific connection types. |
void RecordLossHistograms() const; |
+ // Reports the counts of the packets received on the uplink (remote endpoint |
bengr
2016/02/19 00:45:09
I think you just mean "reports packet receptions t
tbansal1
2016/02/26 01:15:00
Done.
|
+ // to this device) to the |socket_performance_watcher_|. Called everytime a |
+ // packet is received. |previous_largest_received_packet_number| is the value |
+ // of |largest_received_packet_number_| before the packet was received. |
+ void ReportPacketCounts( |
+ QuicPacketCount previous_largest_received_packet_number) const; |
+ |
BoundNetLog net_log_; |
QuicSpdySession* session_; // Unowned. |
// The last packet number received. |