| Index: net/tools/quic/quic_client.h
|
| diff --git a/net/tools/quic/quic_client.h b/net/tools/quic/quic_client.h
|
| index 33dfeaa16028d2b49f5367b0fd148d039d86e9be..da934ff7f1974e657f350fd61ef06a382110d790 100644
|
| --- a/net/tools/quic/quic_client.h
|
| +++ b/net/tools/quic/quic_client.h
|
| @@ -50,13 +50,12 @@ class QuicClient : public EpollCallbackInterface,
|
| QuicClient(IPEndPoint server_address,
|
| const QuicServerId& server_id,
|
| const QuicVersionVector& supported_versions,
|
| - bool print_response,
|
| - uint32 initial_flow_control_window);
|
| + bool print_response);
|
| QuicClient(IPEndPoint server_address,
|
| const QuicServerId& server_id,
|
| - const QuicConfig& config,
|
| const QuicVersionVector& supported_versions,
|
| - uint32 initial_flow_control_window);
|
| + bool print_response,
|
| + const QuicConfig& config);
|
|
|
| virtual ~QuicClient();
|
|
|
| @@ -245,9 +244,6 @@ class QuicClient : public EpollCallbackInterface,
|
| // when the stream is closed (in OnClose).
|
| bool print_response_;
|
|
|
| - // Size of initial flow control receive window to advertise to server.
|
| - uint32 initial_flow_control_window_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(QuicClient);
|
| };
|
|
|
|
|