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

Unified Diff: net/quic/quic_connection_stats.h

Issue 1785863002: Remove FEC related connection options and update FEC related comment in code base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@116555910
Patch Set: Created 4 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_test.cc ('k') | net/quic/quic_connection_stats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_stats.h
diff --git a/net/quic/quic_connection_stats.h b/net/quic/quic_connection_stats.h
index 2787612966a983a2ea7cf8456893e28af154734e..b955b661b02eff2eb41761de51d7c934086c9c19 100644
--- a/net/quic/quic_connection_stats.h
+++ b/net/quic/quic_connection_stats.h
@@ -26,7 +26,7 @@ struct NET_EXPORT_PRIVATE QuicConnectionStats {
std::ostream& os,
const QuicConnectionStats& s);
- QuicByteCount bytes_sent; // Includes retransmissions, fec.
+ QuicByteCount bytes_sent; // Includes retransmissions.
QuicPacketCount packets_sent;
// Non-retransmitted bytes sent in a stream frame.
QuicByteCount stream_bytes_sent;
@@ -35,7 +35,7 @@ struct NET_EXPORT_PRIVATE QuicConnectionStats {
// These include version negotiation and public reset packets, which do not
// have packet numbers or frame data.
- QuicByteCount bytes_received; // Includes duplicate data for a stream, fec.
+ QuicByteCount bytes_received; // Includes duplicate data for a stream.
// Includes packets which were not processable.
QuicPacketCount packets_received;
// Excludes packets which were not processable.
@@ -55,7 +55,6 @@ struct NET_EXPORT_PRIVATE QuicConnectionStats {
// Number of packets lost exiting slow start.
QuicPacketCount slowstart_packets_lost;
- QuicPacketCount packets_revived;
QuicPacketCount packets_dropped; // Duplicate or less than least unacked.
size_t crypto_retransmit_count;
// Count of times the loss detection alarm fired. At least one packet should
« no previous file with comments | « net/quic/quic_config_test.cc ('k') | net/quic/quic_connection_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698