summaryrefslogtreecommitdiff
path: root/chromium/net/tools/quic/quic_server_session.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/tools/quic/quic_server_session.h')
-rw-r--r--chromium/net/tools/quic/quic_server_session.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/net/tools/quic/quic_server_session.h b/chromium/net/tools/quic/quic_server_session.h
index 604b9fc0c42..2f031373bda 100644
--- a/chromium/net/tools/quic/quic_server_session.h
+++ b/chromium/net/tools/quic/quic_server_session.h
@@ -25,6 +25,10 @@ class ReliableQuicStream;
namespace tools {
+namespace test {
+class QuicServerSessionPeer;
+} // namespace test
+
// An interface from the session to the entity owning the session.
// This lets the session notify its owner (the Dispatcher) when the connection
// is closed.
@@ -66,6 +70,8 @@ class QuicServerSession : public QuicSession {
const QuicCryptoServerConfig& crypto_config);
private:
+ friend class test::QuicServerSessionPeer;
+
scoped_ptr<QuicCryptoServerStream> crypto_stream_;
QuicSessionOwner* owner_;