| Index: net/quic/quic_protocol.cc
|
| diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
|
| index 5f83af77931f56fdbfd24b053d89e24e8c0475df..6cd3ae955a2077d70c3c9f8258e70300f2cd6764 100644
|
| --- a/net/quic/quic_protocol.cc
|
| +++ b/net/quic/quic_protocol.cc
|
| @@ -652,22 +652,26 @@ TransmissionInfo::TransmissionInfo()
|
| all_transmissions(nullptr),
|
| in_flight(false),
|
| is_unackable(false),
|
| - is_fec_packet(false) {}
|
| + is_fec_packet(false) {
|
| +}
|
|
|
| TransmissionInfo::TransmissionInfo(
|
| RetransmittableFrames* retransmittable_frames,
|
| QuicSequenceNumberLength sequence_number_length,
|
| TransmissionType transmission_type,
|
| - QuicTime sent_time)
|
| + QuicTime sent_time,
|
| + QuicByteCount bytes_sent,
|
| + bool is_fec_packet)
|
| : retransmittable_frames(retransmittable_frames),
|
| sequence_number_length(sequence_number_length),
|
| sent_time(sent_time),
|
| - bytes_sent(0),
|
| + bytes_sent(bytes_sent),
|
| nack_count(0),
|
| transmission_type(transmission_type),
|
| all_transmissions(nullptr),
|
| in_flight(false),
|
| is_unackable(false),
|
| - is_fec_packet(false) {}
|
| + is_fec_packet(is_fec_packet) {
|
| +}
|
|
|
| } // namespace net
|
|
|