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

Unified Diff: net/quic/test_tools/quic_session_peer.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/quartc/quartc_stream_test.cc ('k') | net/quic/test_tools/quic_session_peer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/quic_session_peer.h
diff --git a/net/quic/test_tools/quic_session_peer.h b/net/quic/test_tools/quic_session_peer.h
index 0aa46f83fc3dc780c6682c0264bbd677c1a651b5..59245fe72d7f64e3df38d874d8c91f3468a9e239 100644
--- a/net/quic/test_tools/quic_session_peer.h
+++ b/net/quic/test_tools/quic_session_peer.h
@@ -21,7 +21,7 @@ class QuicCryptoStream;
class QuicHeadersStream;
class QuicSession;
class QuicSpdyStream;
-class ReliableQuicStream;
+class QuicStream;
namespace test {
@@ -35,8 +35,8 @@ class QuicSessionPeer {
uint32_t max_streams);
static QuicCryptoStream* GetCryptoStream(QuicSession* session);
static QuicWriteBlockedList* GetWriteBlockedStreams(QuicSession* session);
- static ReliableQuicStream* GetOrCreateDynamicStream(QuicSession* session,
- QuicStreamId stream_id);
+ static QuicStream* GetOrCreateDynamicStream(QuicSession* session,
+ QuicStreamId stream_id);
static std::map<QuicStreamId, QuicStreamOffset>&
GetLocallyClosedStreamsHighestOffset(QuicSession* session);
static QuicSession::StaticStreamMap& static_streams(QuicSession* session);
@@ -44,7 +44,7 @@ class QuicSessionPeer {
static std::unordered_set<QuicStreamId>* GetDrainingStreams(
QuicSession* session);
static void ActivateStream(QuicSession* session,
- std::unique_ptr<ReliableQuicStream> stream);
+ std::unique_ptr<QuicStream> stream);
// Discern the state of a stream. Exactly one of these should be true at a
// time for any stream id > 0 (other than the special streams 1 and 3).
« no previous file with comments | « net/quic/quartc/quartc_stream_test.cc ('k') | net/quic/test_tools/quic_session_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698