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

Unified Diff: net/quic/quic_protocol.cc

Issue 1785853002: Remove is_fec_packet from TransmissionInfo and SerializedPacket. No functional change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@116411121
Patch Set: Merge from 116555910 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_protocol.h ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.cc
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
index 5c8b63cc61bcd70d12f189ed0b9e4f4a3a90c3b1..d9af68fbdee6f04e101b714072c97949728c298a 100644
--- a/net/quic/quic_protocol.cc
+++ b/net/quic/quic_protocol.cc
@@ -734,7 +734,6 @@ SerializedPacket::SerializedPacket(QuicPathId path_id,
packet_number_length(packet_number_length),
encryption_level(ENCRYPTION_NONE),
entropy_hash(entropy_hash),
- is_fec_packet(false),
has_ack(has_ack),
has_stop_waiting(has_stop_waiting),
original_packet_number(0),
@@ -764,7 +763,6 @@ TransmissionInfo::TransmissionInfo()
transmission_type(NOT_RETRANSMISSION),
in_flight(false),
is_unackable(false),
- is_fec_packet(false),
has_crypto_handshake(false),
needs_padding(false),
retransmission(0) {}
@@ -774,7 +772,6 @@ TransmissionInfo::TransmissionInfo(EncryptionLevel level,
TransmissionType transmission_type,
QuicTime sent_time,
QuicPacketLength bytes_sent,
- bool is_fec_packet,
bool has_crypto_handshake,
bool needs_padding)
: encryption_level(level),
@@ -785,7 +782,6 @@ TransmissionInfo::TransmissionInfo(EncryptionLevel level,
transmission_type(transmission_type),
in_flight(false),
is_unackable(false),
- is_fec_packet(is_fec_packet),
has_crypto_handshake(has_crypto_handshake),
needs_padding(needs_padding),
retransmission(0) {}
« no previous file with comments | « net/quic/quic_protocol.h ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698