| Index: net/quic/quic_packet_creator.h
|
| diff --git a/net/quic/quic_packet_creator.h b/net/quic/quic_packet_creator.h
|
| index f06e55a6efb23c9c0328efa0f110e911119e269f..8c747066adf09e48fa4cc220fe78ec3436b43d05 100644
|
| --- a/net/quic/quic_packet_creator.h
|
| +++ b/net/quic/quic_packet_creator.h
|
| @@ -311,13 +311,10 @@ class NET_EXPORT_PRIVATE QuicPacketCreator {
|
| bool fec_flag,
|
| QuicPacketHeader* header);
|
|
|
| - // Allows a frame to be added without creating retransmittable frames.
|
| - // Particularly useful for retransmits using SerializeAllFrames().
|
| - // If current open packet cannot accommodate |frame|, returns false and
|
| - // flushes all pending frames.
|
| - bool AddFrame(const QuicFrame& frame,
|
| - bool save_retransmittable_frames,
|
| - bool needs_padding);
|
| + // Adds a |frame| if there is space and returns false and flushes all pending
|
| + // frames if there isn't room. If |save_retransmittable_frames| is true,
|
| + // saves the |frame| in the next SerializedPacket.
|
| + bool AddFrame(const QuicFrame& frame, bool save_retransmittable_frames);
|
|
|
| // Adds a padding frame to the current packet only if the current packet
|
| // contains a handshake message, and there is sufficient room to fit a
|
|
|