| Index: net/quic/quic_connection.cc
|
| diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc
|
| index 997be1c388b874968d15609f87bd586973cf808d..59421ca2912dc69241c15ec596f788d71e7a22b4 100644
|
| --- a/net/quic/quic_connection.cc
|
| +++ b/net/quic/quic_connection.cc
|
| @@ -478,8 +478,10 @@ bool QuicConnection::OnAckFrame(const QuicAckFrame& incoming_ack) {
|
| void QuicConnection::ProcessAckFrame(const QuicAckFrame& incoming_ack) {
|
| largest_seen_packet_with_ack_ = last_header_.packet_sequence_number;
|
|
|
| - received_packet_manager_.UpdatePacketInformationReceivedByPeer(incoming_ack);
|
| - received_packet_manager_.UpdatePacketInformationSentByPeer(incoming_ack);
|
| + received_packet_manager_.UpdatePacketInformationReceivedByPeer(
|
| + incoming_ack.received_info);
|
| + received_packet_manager_.UpdatePacketInformationSentByPeer(
|
| + incoming_ack.sent_info);
|
| // Possibly close any FecGroups which are now irrelevant.
|
| CloseFecGroupsBefore(incoming_ack.sent_info.least_unacked + 1);
|
|
|
|
|