| Index: net/tools/quic/quic_dispatcher.h
|
| diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h
|
| index 4ec5449fe06b28f085e82ed941b53af7c1530b6c..2468f1cc82f5166bc8cbd8bb1ebf7133387fbaf7 100644
|
| --- a/net/tools/quic/quic_dispatcher.h
|
| +++ b/net/tools/quic/quic_dispatcher.h
|
| @@ -61,8 +61,7 @@ class QuicDispatcher : public QuicServerSessionVisitor {
|
| QuicDispatcher(const QuicConfig& config,
|
| const QuicCryptoServerConfig& crypto_config,
|
| const QuicVersionVector& supported_versions,
|
| - EpollServer* epoll_server,
|
| - uint32 initial_flow_control_window_bytes);
|
| + EpollServer* epoll_server);
|
|
|
| virtual ~QuicDispatcher();
|
|
|
| @@ -166,10 +165,6 @@ class QuicDispatcher : public QuicServerSessionVisitor {
|
|
|
| QuicPacketWriter* writer() { return writer_.get(); }
|
|
|
| - const uint32 initial_flow_control_window_bytes() const {
|
| - return initial_flow_control_window_bytes_;
|
| - }
|
| -
|
| private:
|
| class QuicFramerVisitor;
|
| friend class net::tools::test::QuicDispatcherPeer;
|
| @@ -238,10 +233,6 @@ class QuicDispatcher : public QuicServerSessionVisitor {
|
| QuicFramer framer_;
|
| scoped_ptr<QuicFramerVisitor> framer_visitor_;
|
|
|
| - // Initial flow control window size to advertize to peer on newly created
|
| - // connections.
|
| - const uint32 initial_flow_control_window_bytes_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(QuicDispatcher);
|
| };
|
|
|
|
|