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

Unified Diff: net/quic/quic_connection.cc

Issue 12317026: Various small QUIC cleanups after merging to Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « net/quic/quic_connection.h ('k') | net/quic/quic_framer_test.cc » ('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 1dc776a227de9e0528f64acbcbdf98328717fc33..98892464843f1d320e4215001f2bae86ec04d780 100644
--- a/net/quic/quic_connection.cc
+++ b/net/quic/quic_connection.cc
@@ -74,7 +74,7 @@ QuicConnection::UnackedPacket::UnackedPacket(QuicFrames unacked_frames)
}
QuicConnection::UnackedPacket::UnackedPacket(QuicFrames unacked_frames,
- std::string data)
+ string data)
: frames(unacked_frames),
data(data) {
}
@@ -482,9 +482,9 @@ void QuicConnection::OnPacketComplete() {
DLOG(INFO) << "Got packet " << last_header_.packet_sequence_number
<< " with " << last_stream_frames_.size()
<< " stream frames for " << last_header_.public_header.guid;
- congestion_manager_.RecordIncomingPacket(last_size_,
- last_header_.packet_sequence_number, time_of_last_received_packet_,
- last_packet_revived_);
+ congestion_manager_.RecordIncomingPacket(
+ last_size_, last_header_.packet_sequence_number,
+ time_of_last_received_packet_, last_packet_revived_);
} else {
DLOG(INFO) << "Got revived packet with " << last_stream_frames_.size()
<< " frames.";
« no previous file with comments | « net/quic/quic_connection.h ('k') | net/quic/quic_framer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698