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

Unified Diff: net/quic/test_tools/quic_session_peer.cc

Issue 368803003: QUIC_VERSION_21: headers and crypto streams are now flow controlled at (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months 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
Index: net/quic/test_tools/quic_session_peer.cc
diff --git a/net/quic/test_tools/quic_session_peer.cc b/net/quic/test_tools/quic_session_peer.cc
index 39663fbb7eb9c8cc69efd1e90773ce59df199829..f8024fe0ae2c8a825f921cdb89649da06ed4230b 100644
--- a/net/quic/test_tools/quic_session_peer.cc
+++ b/net/quic/test_tools/quic_session_peer.cc
@@ -22,6 +22,11 @@ void QuicSessionPeer::SetMaxOpenStreams(QuicSession* session,
}
// static
+QuicCryptoStream* QuicSessionPeer::GetCryptoStream(QuicSession* session) {
+ return session->GetCryptoStream();
+}
+
+// static
QuicHeadersStream* QuicSessionPeer::GetHeadersStream(QuicSession* session) {
return session->headers_stream_.get();
}

Powered by Google App Engine
This is Rietveld 408576698