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

Unified Diff: net/quic/test_tools/quic_test_utils.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/test_tools/quic_test_packet_maker.cc ('k') | net/tools/quic/quic_packet_printer_bin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/quic_test_utils.cc
diff --git a/net/quic/test_tools/quic_test_utils.cc b/net/quic/test_tools/quic_test_utils.cc
index 28f7115655eae9d509833704728d52c6d4a95558..cbc0eb1cd25f950b274fb843b5bc5645162c6eb7 100644
--- a/net/quic/test_tools/quic_test_utils.cc
+++ b/net/quic/test_tools/quic_test_utils.cc
@@ -630,7 +630,6 @@ QuicEncryptedPacket* ConstructEncryptedPacket(
header.packet_number = packet_number;
header.entropy_flag = false;
header.entropy_hash = 0;
- header.fec_flag = false;
QuicStreamFrame stream_frame(1, false, 0, StringPiece(data));
QuicFrame frame(&stream_frame);
QuicFrames frames;
@@ -681,7 +680,6 @@ QuicEncryptedPacket* ConstructMisFramedEncryptedPacket(
header.packet_number = packet_number;
header.entropy_flag = false;
header.entropy_hash = 0;
- header.fec_flag = false;
QuicStreamFrame stream_frame(1, false, 0, StringPiece(data));
QuicFrame frame(&stream_frame);
QuicFrames frames;
@@ -775,7 +773,6 @@ static QuicPacket* ConstructPacketFromHandshakeMessage(
header.packet_number = 1;
header.entropy_flag = false;
header.entropy_hash = 0;
- header.fec_flag = false;
QuicStreamFrame stream_frame(kCryptoStreamId, false, 0,
data->AsStringPiece());
« no previous file with comments | « net/quic/test_tools/quic_test_packet_maker.cc ('k') | net/tools/quic/quic_packet_printer_bin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698