diff options
author | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-02 06:15:37 +0000 |
---|---|---|
committer | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-02 06:15:37 +0000 |
commit | 310d37b979f36c4e36ee002ccab7d819a16a361d (patch) | |
tree | 4d6f03ff46b6dc9347eb46c642cd40bb9abe4abc /net/quic/quic_packet_creator.h | |
parent | 36caed781a434ccea526e6c8e8debf9038147aff (diff) | |
download | chromium_src-310d37b979f36c4e36ee002ccab7d819a16a361d.zip chromium_src-310d37b979f36c4e36ee002ccab7d819a16a361d.tar.gz chromium_src-310d37b979f36c4e36ee002ccab7d819a16a361d.tar.bz2 |
Land Recent QUIC Changes.
Add case for PING frame in QuicFrame <<.
Merge internal change: 71908470
https://codereview.chromium.org/421963006/
Add methods to the QuicConnectionDebug visitor for tracking various
events which cause a QuicConnection to discard a packet.
Merge internal change: 71871881
https://codereview.chromium.org/421913015/
Change ReliableQuicStream::OnStreamFrame to return void since the method
already closes the connection when there are errors and callers are not
checking the return value
Make QuicStreamSequencer::OnStreamFrame return void instead of bool
since it is already closing the connect or resetting the stream when
there is an error.
Make two QUIC methods return void instead of bool.
Merge internal change: 71870242
https://codereview.chromium.org/420393004/
Create a visitor which can allow using both a trace... visitor and the
existing stats visitor.
Changed QuicConnection's QuicConnectionDebugVisitor to a scoped_ptr.
Merge internal change: 71863508
https://codereview.chromium.org/429453003/
Use 1350 byte QUIC packets by default.
Merge internal change: 71837432
https://codereview.chromium.org/427673005/
Improve debug logging of QUIC crypto handshake.
Merge internal change: 71833151
https://codereview.chromium.org/428803002/
Fix a bug in QuicUnackedPacketMap where an in flight packet could be
removed before being removed from bytes_in_flight.
Merge internal change: 71783653
https://codereview.chromium.org/422123005/
Inline the members of QUIC's ReceivedPacketInfo into QuicAckFrame now
that version 15 is gone.
Merge internal change: 71763611
https://codereview.chromium.org/424003002/
Remove FixRate congestion frame type.
Merge internal change: 71746617
https://codereview.chromium.org/424903002/
Remove QUIC_VERSION_15 now that Chrome Stable supports QUIC_VERSION_16.
Merge internal change: 71718286
https://codereview.chromium.org/413403008/
R=rch@chromium.org
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/420313005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287168 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_packet_creator.h')
-rw-r--r-- | net/quic/quic_packet_creator.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/quic/quic_packet_creator.h b/net/quic/quic_packet_creator.h index cd6c587..ef466c8 100644 --- a/net/quic/quic_packet_creator.h +++ b/net/quic/quic_packet_creator.h @@ -69,7 +69,6 @@ class NET_EXPORT_PRIVATE QuicPacketCreator : public QuicFecBuilderInterface { // The overhead the framing will add for a packet with one frame. static size_t StreamFramePacketOverhead( - QuicVersion version, QuicConnectionIdLength connection_id_length, bool include_version, QuicSequenceNumberLength sequence_number_length, |