summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_framer.h
diff options
context:
space:
mode:
authorrtenneti <rtenneti@chromium.org>2015-06-17 22:47:40 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-18 05:48:20 +0000
commitc14c8abd49894e0bd49556880697d3dd7a061ecc (patch)
tree03b549e8c64ba6b12459b20a5092d78dcfd8115c /net/quic/quic_framer.h
parent9c5cf06617232b00842383ff001c49fe058fc6b4 (diff)
downloadchromium_src-c14c8abd49894e0bd49556880697d3dd7a061ecc.zip
chromium_src-c14c8abd49894e0bd49556880697d3dd7a061ecc.tar.gz
chromium_src-c14c8abd49894e0bd49556880697d3dd7a061ecc.tar.bz2
Landing Recent QUIC changes until 06/17/2015 14:59.
relnote: Minor QUIC code cleanups. No functional change. Mostly removed unused sequence_number_length from the MinAckFrameSize. Merge internal change: 96206723 https://codereview.chromium.org/1191823003/ relnote: Increase the maximum number of tracked QUIC packets to 5000. This is intended to be in advance of Chrome M44, which is going to increase the CWND from 256k bytes to 1MB. Merge internal change: 96205856 https://codereview.chromium.org/1180073011/ Change the QUICStreamSequencerTest to test the sequencer interface, rather than reaching into the implementation. relnote: N/A. Test only change. Merge internal change: 96134592 https://codereview.chromium.org/1181283007/ Introduce tests for QUIC's AckNotifierManager. Some of the features of the test fixture related to non-retransmittable packets are not used yet. They will be used by CL 96040825 (from which this CL was forked off). relnote: n/a (test-only change) Merge internal change: 96120706 https://codereview.chromium.org/1179183004/ Cleanup: Fix a dangling reference. When a StringPiece is initialized with a temporary string, the string will be destroyed at the end of the expression and the StringPiece will contain a dangling reference. Found by internal stringpiece dangling code. Merge internal change: 96106102 https://codereview.chromium.org/1180143007/ relnote: Remove IOVector from the write path in favor of a simpler QuicIOVector struct. Estimated to save 2-3% of CPU. Merge internal change: 95926412 https://codereview.chromium.org/1190913002/ relnote: QUIC - Added a new flag FLAGS_quic_send_fec_packet_only_on_fec_alarm to send FEC packet only when FEC timer goes off. When this flag is on, when FEC timeout goes off, it closes the FEC group and sends the FEC packet. Added a new QUIC connection option kFSPA('F', 'S', 'P', 'A') for the client to set the packet_generator's fec_send_policy to FEC_ALARM_TRIGGER (this is set only when the above flag is enabled). Changed QuicConnection's unit tests to run with the following two send polocies (and in combination with supported QUIC versions). FEC_ALARM_TRIGGER and FEC_ANY_TRIGGER Merge internal change: 95850278 https://codereview.chromium.org/1192463007/ relnote: Remove QuicDataWriter::WriteIOVector, because it's never used. Merge internal change: 95835632 https://codereview.chromium.org/1188193003/ R=rch@chromium.org Review URL: https://codereview.chromium.org/1190123004 Cr-Commit-Position: refs/heads/master@{#334997}
Diffstat (limited to 'net/quic/quic_framer.h')
-rw-r--r--net/quic/quic_framer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/quic/quic_framer.h b/net/quic/quic_framer.h
index 3645ca8..c994c2e 100644
--- a/net/quic/quic_framer.h
+++ b/net/quic/quic_framer.h
@@ -243,7 +243,6 @@ class NET_EXPORT_PRIVATE QuicFramer {
InFecGroup is_in_fec_group);
// Size in bytes of all ack frame fields without the missing packets.
static size_t GetMinAckFrameSize(
- QuicSequenceNumberLength sequence_number_length,
QuicSequenceNumberLength largest_observed_length);
// Size in bytes of a stop waiting frame.
static size_t GetStopWaitingFrameSize(