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

Unified Diff: net/quic/quic_sent_packet_manager.h

Issue 1495243002: Remove EncryptionLevel from QUIC's RetransmittableFrames and add it to TransmissionInfo. No functi… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@108735153
Patch Set: Created 5 years 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.cc ('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_sent_packet_manager.h
diff --git a/net/quic/quic_sent_packet_manager.h b/net/quic/quic_sent_packet_manager.h
index 2b0d09583d10860ae03532cb396d1c2311aef6b4..f0d990f702d7a4bb041f322825763cb933c5c606 100644
--- a/net/quic/quic_sent_packet_manager.h
+++ b/net/quic/quic_sent_packet_manager.h
@@ -77,15 +77,18 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager {
PendingRetransmission(QuicPacketNumber packet_number,
TransmissionType transmission_type,
const RetransmittableFrames& retransmittable_frames,
+ EncryptionLevel encryption_level,
QuicPacketNumberLength packet_number_length)
: packet_number(packet_number),
transmission_type(transmission_type),
retransmittable_frames(retransmittable_frames),
+ encryption_level(encryption_level),
packet_number_length(packet_number_length) {}
QuicPacketNumber packet_number;
TransmissionType transmission_type;
const RetransmittableFrames& retransmittable_frames;
+ EncryptionLevel encryption_level;
QuicPacketNumberLength packet_number_length;
};
« no previous file with comments | « net/quic/quic_protocol.cc ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698