Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Unified Diff: net/quic/core/quic_stream_sequencer.h

Issue 2487613002: Landing Recent QUIC changes until 12:43 PM, Nov 5, 2016 UTC+8 (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/core/quic_stream.cc ('k') | net/quic/core/quic_stream_sequencer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_stream_sequencer.h
diff --git a/net/quic/core/quic_stream_sequencer.h b/net/quic/core/quic_stream_sequencer.h
index acd3e9ddb844c73fab1c8dda95dee204050f72ab..caede8901687955b5b48b819dc12b0f795a741b5 100644
--- a/net/quic/core/quic_stream_sequencer.h
+++ b/net/quic/core/quic_stream_sequencer.h
@@ -22,13 +22,13 @@ class QuicStreamSequencerPeer;
class QuicClock;
class QuicSession;
-class ReliableQuicStream;
+class QuicStream;
// Buffers frames until we have something which can be passed
// up to the next layer.
class NET_EXPORT_PRIVATE QuicStreamSequencer {
public:
- QuicStreamSequencer(ReliableQuicStream* quic_stream, const QuicClock* clock);
+ QuicStreamSequencer(QuicStream* quic_stream, const QuicClock* clock);
virtual ~QuicStreamSequencer();
// If the frame is the next one we need in order to process in-order data,
@@ -118,7 +118,7 @@ class NET_EXPORT_PRIVATE QuicStreamSequencer {
bool MaybeCloseStream();
// The stream which owns this sequencer.
- ReliableQuicStream* stream_;
+ QuicStream* stream_;
// Stores received data in offset order.
QuicStreamSequencerBuffer buffered_frames_;
« no previous file with comments | « net/quic/core/quic_stream.cc ('k') | net/quic/core/quic_stream_sequencer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698