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

Unified Diff: net/quic/quic_protocol.cc

Issue 302783003: Rename QUIC's TransmissionInfo pending to in_flight and the associated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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_protocol.h ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.cc
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
index 0f92e457eb948954ff551cefb4c799d764a053bc..df3bfa5cc17ad9e2e289d9ce630cc251a4d1e712 100644
--- a/net/quic/quic_protocol.cc
+++ b/net/quic/quic_protocol.cc
@@ -747,7 +747,7 @@ TransmissionInfo::TransmissionInfo()
bytes_sent(0),
nack_count(0),
all_transmissions(NULL),
- pending(false) { }
+ in_flight(false) { }
TransmissionInfo::TransmissionInfo(
RetransmittableFrames* retransmittable_frames,
@@ -759,7 +759,7 @@ TransmissionInfo::TransmissionInfo(
bytes_sent(0),
nack_count(0),
all_transmissions(new SequenceNumberSet),
- pending(false) {
+ in_flight(false) {
all_transmissions->insert(sequence_number);
}
@@ -774,7 +774,7 @@ TransmissionInfo::TransmissionInfo(
bytes_sent(0),
nack_count(0),
all_transmissions(all_transmissions),
- pending(false) {
+ in_flight(false) {
all_transmissions->insert(sequence_number);
}
« no previous file with comments | « net/quic/quic_protocol.h ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698