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

Unified Diff: net/quic/core/quic_protocol.cc

Issue 2403183002: relnote: Remove remaining now unused FEC code from QUIC. Merge internal change: 135007563 (Closed)
Patch Set: Created 4 years, 2 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/core/quic_protocol.h ('k') | net/quic/test_tools/quic_test_packet_maker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol.cc
diff --git a/net/quic/core/quic_protocol.cc b/net/quic/core/quic_protocol.cc
index 7c99b8e26f971f6a6fa0169f1075e8187ff50e5f..34f40ec86a5a3c40e4c643e7d667bfddd6567899 100644
--- a/net/quic/core/quic_protocol.cc
+++ b/net/quic/core/quic_protocol.cc
@@ -78,16 +78,14 @@ QuicPacketHeader::QuicPacketHeader()
: packet_number(0),
path_id(kDefaultPathId),
entropy_flag(false),
- entropy_hash(0),
- fec_flag(false) {}
+ entropy_hash(0) {}
QuicPacketHeader::QuicPacketHeader(const QuicPacketPublicHeader& header)
: public_header(header),
packet_number(0),
path_id(kDefaultPathId),
entropy_flag(false),
- entropy_hash(0),
- fec_flag(false) {}
+ entropy_hash(0) {}
QuicPacketHeader::QuicPacketHeader(const QuicPacketHeader& other) = default;
@@ -304,8 +302,7 @@ ostream& operator<<(ostream& os, const QuicPacketHeader& header) {
<< QuicUtils::HexEncode(StringPiece(header.public_header.nonce->data(),
header.public_header.nonce->size()));
}
- os << ", fec_flag: " << header.fec_flag
- << ", entropy_flag: " << header.entropy_flag
+ os << ", entropy_flag: " << header.entropy_flag
<< ", entropy hash: " << static_cast<int>(header.entropy_hash)
<< ", path_id: " << static_cast<int>(header.path_id)
<< ", packet_number: " << header.packet_number << " }\n";
« no previous file with comments | « net/quic/core/quic_protocol.h ('k') | net/quic/test_tools/quic_test_packet_maker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698