| Index: net/quic/quic_stream_sequencer.h
|
| diff --git a/net/quic/quic_stream_sequencer.h b/net/quic/quic_stream_sequencer.h
|
| index bb5b29e562e06ea2d5702c667776f39c96034091..fe9fba56830ffbd79267b52bf18a1d821678f21c 100644
|
| --- a/net/quic/quic_stream_sequencer.h
|
| +++ b/net/quic/quic_stream_sequencer.h
|
| @@ -49,9 +49,6 @@ class NET_EXPORT_PRIVATE QuicStreamSequencer {
|
| // this will return true, or it will be rejected and this will return false.
|
| bool OnStreamFrame(const QuicStreamFrame& frame);
|
|
|
| - // Wait until we've seen 'offset' bytes, and then terminate the stream.
|
| - void CloseStreamAtOffset(QuicStreamOffset offset);
|
| -
|
| // Once data is buffered, it's up to the stream to read it when the stream
|
| // can handle more data. The following three functions make that possible.
|
|
|
| @@ -86,6 +83,9 @@ class NET_EXPORT_PRIVATE QuicStreamSequencer {
|
| // TODO(alyssar) use something better than strings.
|
| typedef map<QuicStreamOffset, string> FrameMap;
|
|
|
| + // Wait until we've seen 'offset' bytes, and then terminate the stream.
|
| + void CloseStreamAtOffset(QuicStreamOffset offset);
|
| +
|
| bool MaybeCloseStream();
|
|
|
| ReliableQuicStream* stream_; // The stream which owns this sequencer.
|
|
|