| Index: net/quic/quic_dispatcher.h
|
| diff --git a/net/quic/quic_dispatcher.h b/net/quic/quic_dispatcher.h
|
| index 423afe64eb52a93acef4644982e6d439471af43e..fa20bcc2dad3638edc86e6f2c45eb26239fbdd1e 100644
|
| --- a/net/quic/quic_dispatcher.h
|
| +++ b/net/quic/quic_dispatcher.h
|
| @@ -57,8 +57,7 @@ class QuicDispatcher : public QuicServerSessionVisitor {
|
| QuicDispatcher(const QuicConfig& config,
|
| const QuicCryptoServerConfig& crypto_config,
|
| const QuicVersionVector& supported_versions,
|
| - QuicConnectionHelperInterface* helper,
|
| - uint32 initial_flow_control_window_bytes);
|
| + QuicConnectionHelperInterface* helper);
|
|
|
| virtual ~QuicDispatcher();
|
|
|
| @@ -157,10 +156,6 @@ class QuicDispatcher : public QuicServerSessionVisitor {
|
|
|
| QuicPacketWriter* writer() { return writer_.get(); }
|
|
|
| - uint32 initial_flow_control_window_bytes() const {
|
| - return initial_flow_control_window_bytes_;
|
| - }
|
| -
|
| private:
|
| class QuicFramerVisitor;
|
| friend class net::test::QuicDispatcherPeer;
|
| @@ -227,10 +222,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);
|
| };
|
|
|
|
|