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

Unified Diff: net/quic/quic_connection_stats.cc

Issue 990533002: Land Recent QUIC Changes until 03/06/2015. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/quic/quic_config.cc ('k') | net/quic/quic_connection_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/quic/quic_config.cc ('k') | net/quic/quic_connection_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698