| Index: net/quic/quic_protocol.h
|
| diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
|
| index 20d2b03d62e139b157e1caf3fb4b5b519635e919..e826fff040d89d594afb32d5e4f5d1aaf1f38718 100644
|
| --- a/net/quic/quic_protocol.h
|
| +++ b/net/quic/quic_protocol.h
|
| @@ -1293,7 +1293,6 @@ struct NET_EXPORT_PRIVATE SerializedPacket {
|
| QuicPacketNumberLength packet_number_length;
|
| EncryptionLevel encryption_level;
|
| QuicPacketEntropyHash entropy_hash;
|
| - bool is_fec_packet;
|
| bool has_ack;
|
| bool has_stop_waiting;
|
| QuicPacketNumber original_packet_number;
|
| @@ -1314,7 +1313,6 @@ struct NET_EXPORT_PRIVATE TransmissionInfo {
|
| TransmissionType transmission_type,
|
| QuicTime sent_time,
|
| QuicPacketLength bytes_sent,
|
| - bool is_fec_packet,
|
| bool has_crypto_handshake,
|
| bool needs_padding);
|
|
|
| @@ -1334,8 +1332,6 @@ struct NET_EXPORT_PRIVATE TransmissionInfo {
|
| bool in_flight;
|
| // True if the packet can never be acked, so it can be removed.
|
| bool is_unackable;
|
| - // True if the packet is an FEC packet.
|
| - bool is_fec_packet;
|
| // True if the packet contains stream data from the crypto stream.
|
| bool has_crypto_handshake;
|
| // True if the packet needs padding if it's retransmitted.
|
|
|