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

Unified Diff: net/tools/quic/quic_server_session.h

Issue 13976007: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated copyright notice Created 7 years, 8 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
« no previous file with comments | « net/tools/quic/quic_server.cc ('k') | net/tools/quic/quic_server_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_server_session.h
diff --git a/net/tools/quic/quic_server_session.h b/net/tools/quic/quic_server_session.h
index 91a0704dc2257d6e4a806af4715b54563b975522..be92871a682fc33344ef1d6e639a72b46b48d62e 100644
--- a/net/tools/quic/quic_server_session.h
+++ b/net/tools/quic/quic_server_session.h
@@ -17,7 +17,9 @@
namespace net {
+class QuicConfig;
class QuicConnection;
+class QuicCryptoServerConfig;
class ReliableQuicStream;
namespace tools {
@@ -34,7 +36,10 @@ class QuicSessionOwner {
class QuicServerSession : public QuicSession {
public:
- QuicServerSession(QuicConnection *connection, QuicSessionOwner* owner);
+ QuicServerSession(const QuicConfig& config,
+ const QuicCryptoServerConfig& crypto_config,
+ QuicConnection* connection,
+ QuicSessionOwner* owner);
// Override the base class to notify the owner of the connection close.
virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
« no previous file with comments | « net/tools/quic/quic_server.cc ('k') | net/tools/quic/quic_server_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698