| Index: net/quic/quic_dispatcher.h
|
| diff --git a/net/quic/quic_dispatcher.h b/net/quic/quic_dispatcher.h
|
| index 8e2ce034c9cc7ad86cfbfec6ce8eeae89b0530d9..c507556e6839555bda0497db52563798cd33cac9 100644
|
| --- a/net/quic/quic_dispatcher.h
|
| +++ b/net/quic/quic_dispatcher.h
|
| @@ -129,11 +129,6 @@ class QuicDispatcher : public QuicBlockedWriterInterface,
|
| const IPEndPoint& server_address,
|
| const IPEndPoint& client_address);
|
|
|
| - virtual QuicConnection* CreateQuicConnection(
|
| - QuicConnectionId connection_id,
|
| - const IPEndPoint& server_address,
|
| - const IPEndPoint& client_address);
|
| -
|
| // Called by |framer_visitor_| when the public header has been parsed.
|
| virtual bool OnUnauthenticatedPublicHeader(
|
| const QuicPacketPublicHeader& header);
|
| @@ -142,11 +137,6 @@ class QuicDispatcher : public QuicBlockedWriterInterface,
|
| // will be owned by the dispatcher as time_wait_list_manager_
|
| virtual QuicTimeWaitListManager* CreateQuicTimeWaitListManager();
|
|
|
| - // Replaces the packet writer with |writer|. Takes ownership of |writer|.
|
| - void set_writer(QuicServerPacketWriter* writer) {
|
| - writer_.reset(writer);
|
| - }
|
| -
|
| QuicTimeWaitListManager* time_wait_list_manager() {
|
| return time_wait_list_manager_.get();
|
| }
|
|
|