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

Unified Diff: trunk/src/net/quic/quic_packet_creator.h

Issue 16374004: Revert 204046 "Land Recent QUIC changes." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 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 | « trunk/src/net/quic/quic_http_stream_test.cc ('k') | trunk/src/net/quic/quic_packet_creator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/net/quic/quic_packet_creator.h
===================================================================
--- trunk/src/net/quic/quic_packet_creator.h (revision 204061)
+++ trunk/src/net/quic/quic_packet_creator.h (working copy)
@@ -33,8 +33,7 @@
: max_packet_length(kMaxPacketSize),
random_reorder(false),
max_packets_per_fec_group(0),
- send_guid_length(PACKET_8BYTE_GUID),
- send_sequence_number_length(PACKET_6BYTE_SEQUENCE_NUMBER) {
+ send_guid_length(PACKET_8BYTE_GUID) {
}
size_t max_packet_length;
@@ -43,7 +42,6 @@
size_t max_packets_per_fec_group;
// Length of guid to send over the wire.
QuicGuidLength send_guid_length;
- QuicSequenceNumberLength send_sequence_number_length;
};
// QuicRandom* required for packet entropy.
@@ -70,12 +68,10 @@
void StopSendingVersion();
// The overhead the framing will add for a packet with num_frames frames.
- static size_t StreamFramePacketOverhead(
- int num_frames,
- QuicGuidLength guid_length,
- bool include_version,
- QuicSequenceNumberLength sequence_number_length,
- InFecGroup is_in_fec_group);
+ static size_t StreamFramePacketOverhead(int num_frames,
+ QuicGuidLength guid_length,
+ bool include_version,
+ InFecGroup is_in_fec_group);
bool HasRoomForStreamFrame() const;
« no previous file with comments | « trunk/src/net/quic/quic_http_stream_test.cc ('k') | trunk/src/net/quic/quic_packet_creator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698