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

Unified Diff: net/quic/quic_connection.cc

Issue 157803006: Change the types of the arguments to two methods in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | net/quic/quic_received_packet_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | net/quic/quic_received_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698