| Index: net/quic/quic_packet_creator.cc
|
| diff --git a/net/quic/quic_packet_creator.cc b/net/quic/quic_packet_creator.cc
|
| index 866f05f6f3f182e70234ee67f7ee596ad8a8594a..40cad746cb0aa8ede55fb0249d36190d5b67aefc 100644
|
| --- a/net/quic/quic_packet_creator.cc
|
| +++ b/net/quic/quic_packet_creator.cc
|
| @@ -261,23 +261,6 @@ size_t QuicPacketCreator::CreateStreamFrame(QuicStreamId id,
|
| return bytes_consumed;
|
| }
|
|
|
| -size_t QuicPacketCreator::CreateStreamFrameWithNotifier(
|
| - QuicStreamId id,
|
| - const IOVector& data,
|
| - QuicStreamOffset offset,
|
| - bool fin,
|
| - QuicAckNotifier* notifier,
|
| - QuicFrame* frame) {
|
| - size_t bytes_consumed = CreateStreamFrame(id, data, offset, fin, frame);
|
| -
|
| - // The frame keeps track of the QuicAckNotifier until it is serialized into
|
| - // a packet. At that point the notifier is informed of the sequence number
|
| - // of the packet that this frame was eventually sent in.
|
| - frame->stream_frame->notifier = notifier;
|
| -
|
| - return bytes_consumed;
|
| -}
|
| -
|
| SerializedPacket QuicPacketCreator::ReserializeAllFrames(
|
| const QuicFrames& frames,
|
| QuicSequenceNumberLength original_length) {
|
|
|