| Index: net/quic/quic_unacked_packet_map.cc
|
| diff --git a/net/quic/quic_unacked_packet_map.cc b/net/quic/quic_unacked_packet_map.cc
|
| index a9a9e894593c3eb3c18ccca3e8d688b0b6835bd3..be3e8eea3f8c20a42043082f28932112dcf92bc6 100644
|
| --- a/net/quic/quic_unacked_packet_map.cc
|
| +++ b/net/quic/quic_unacked_packet_map.cc
|
| @@ -50,8 +50,9 @@ void QuicUnackedPacketMap::AddSentPacket(SerializedPacket* packet,
|
| }
|
|
|
| TransmissionInfo info(packet->retransmittable_frames,
|
| - packet->packet_number_length, transmission_type,
|
| - sent_time, bytes_sent, packet->is_fec_packet);
|
| + packet->encryption_level, packet->packet_number_length,
|
| + transmission_type, sent_time, bytes_sent,
|
| + packet->is_fec_packet);
|
| if (old_packet_number > 0) {
|
| TransferRetransmissionInfo(old_packet_number, packet_number,
|
| transmission_type, &info);
|
|
|