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

Unified Diff: net/quic/quic_protocol.h

Issue 968513002: Land Recent QUIC Changes until 2/21/2015. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed const from members of TransmissionInfo struct. Created 5 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_packet_generator.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 2bb678bdb9a3125c1a4087f02c1df4da187b7423..548755e215543876980802b42ea663190b9b98bd 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -662,11 +662,6 @@ struct NET_EXPORT_PRIVATE QuicStreamFrame {
bool fin;
QuicStreamOffset offset; // Location of this data in the stream.
IOVector data;
-
- // TODO(rjshade): Remove with FLAGS_quic_attach_ack_notifiers_to_packets.
- // If this is set, then when this packet is ACKed the AckNotifier will be
- // informed.
- QuicAckNotifier* notifier;
};
// TODO(ianswett): Re-evaluate the trade-offs of hash_set vs set when framing
@@ -1022,13 +1017,13 @@ struct NET_EXPORT_PRIVATE TransmissionInfo {
TransmissionInfo(RetransmittableFrames* retransmittable_frames,
QuicSequenceNumberLength sequence_number_length,
TransmissionType transmission_type,
- QuicTime sent_time);
+ QuicTime sent_time,
+ QuicByteCount bytes_sent,
+ bool is_fec_packet);
RetransmittableFrames* retransmittable_frames;
QuicSequenceNumberLength sequence_number_length;
- // Zero when the packet is serialized, non-zero once it's sent.
QuicTime sent_time;
- // Zero when the packet is serialized, non-zero once it's sent.
QuicByteCount bytes_sent;
QuicPacketCount nack_count;
// Reason why this packet was transmitted.
« no previous file with comments | « net/quic/quic_packet_generator.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698