| Index: net/quic/quic_connection_stats.cc
|
| diff --git a/net/quic/quic_connection_stats.cc b/net/quic/quic_connection_stats.cc
|
| index 4ab521f252e76fb38b398dca24bbc8bd7ce00ab6..dd39ac179395849ac3e2cb764ec0a7c5108d08ab 100644
|
| --- a/net/quic/quic_connection_stats.cc
|
| +++ b/net/quic/quic_connection_stats.cc
|
| @@ -42,37 +42,4 @@ QuicConnectionStats::QuicConnectionStats()
|
|
|
| QuicConnectionStats::~QuicConnectionStats() {}
|
|
|
| -ostream& operator<<(ostream& os, const QuicConnectionStats& s) {
|
| - os << "{ bytes sent: " << s.bytes_sent
|
| - << ", packets sent:" << s.packets_sent
|
| - << ", stream bytes sent: " << s.stream_bytes_sent
|
| - << ", packets discarded: " << s.packets_discarded
|
| - << ", bytes received: " << s.bytes_received
|
| - << ", packets received: " << s.packets_received
|
| - << ", packets processed: " << s.packets_processed
|
| - << ", stream bytes received: " << s.stream_bytes_received
|
| - << ", bytes retransmitted: " << s.bytes_retransmitted
|
| - << ", packets retransmitted: " << s.packets_retransmitted
|
| - << ", bytes spuriously retransmitted: " << s.bytes_spuriously_retransmitted
|
| - << ", packets spuriously retransmitted: "
|
| - << s.packets_spuriously_retransmitted
|
| - << ", packets lost: " << s.packets_lost
|
| - << ", slowstart packets lost: " << s.slowstart_packets_lost
|
| - << ", packets revived: " << s.packets_revived
|
| - << ", packets dropped:" << s.packets_dropped
|
| - << ", crypto retransmit count: " << s.crypto_retransmit_count
|
| - << ", tlp count: " << s.tlp_count
|
| - << ", rto count: " << s.rto_count
|
| - << ", min_rtt(us): " << s.min_rtt_us
|
| - << ", srtt(us): " << s.srtt_us
|
| - << ", max packet size: " << s.max_packet_size
|
| - << ", estimated bandwidth: " << s.estimated_bandwidth.ToBytesPerSecond()
|
| - << ", tcp_loss_events: " << s.tcp_loss_events
|
| - << ", packets reordered: " << s.packets_reordered
|
| - << ", max sequence reordering: " << s.max_sequence_reordering
|
| - << ", max time reordering(us): " << s.max_time_reordering_us
|
| - << "}\n";
|
| - return os;
|
| -}
|
| -
|
| } // namespace net
|
|
|