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

Unified Diff: net/quic/quic_server_session.h

Issue 467963002: Refactoring: Create per-connection packet writers in QuicDispatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation Created 6 years, 4 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/quic_server_session.h
diff --git a/net/quic/quic_server_session.h b/net/quic/quic_server_session.h
index 49c03373ed0357f9acdbabf8e37f13b89e00fff0..344feb21e6a0d7050b786b8b68689a1572efc14d 100644
--- a/net/quic/quic_server_session.h
+++ b/net/quic/quic_server_session.h
@@ -44,10 +44,8 @@ class QuicServerSessionVisitor {
class QuicServerSession : public QuicSession {
public:
- // Takes ownership of connection_packet_writer
QuicServerSession(const QuicConfig& config,
QuicConnection* connection,
- QuicPerConnectionPacketWriter* connection_packet_writer,
QuicServerSessionVisitor* visitor);
// Override the base class to notify the owner of the connection close.
@@ -83,7 +81,6 @@ class QuicServerSession : public QuicSession {
friend class test::QuicServerSessionPeer;
scoped_ptr<QuicCryptoServerStream> crypto_stream_;
- scoped_ptr<QuicPerConnectionPacketWriter> connection_packet_writer_;
QuicServerSessionVisitor* visitor_;
DISALLOW_COPY_AND_ASSIGN(QuicServerSession);

Powered by Google App Engine
This is Rietveld 408576698