| Index: net/quic/quic_flow_controller_test.cc
|
| diff --git a/net/quic/quic_flow_controller_test.cc b/net/quic/quic_flow_controller_test.cc
|
| index 2e84886ab132728e009ba49824d2416d1a3c60a3..e4a53e6606db6c892387040fdb3694465dd45fbb 100644
|
| --- a/net/quic/quic_flow_controller_test.cc
|
| +++ b/net/quic/quic_flow_controller_test.cc
|
| @@ -31,7 +31,7 @@ class QuicFlowControllerTest : public ::testing::Test {
|
| : stream_id_(1234),
|
| send_window_(kInitialSessionFlowControlWindowForTest),
|
| receive_window_(kInitialSessionFlowControlWindowForTest),
|
| - connection_(&helper_, Perspective::IS_CLIENT) {}
|
| + connection_(&helper_, &alarm_factory_, Perspective::IS_CLIENT) {}
|
|
|
| void Initialize() {
|
| flow_controller_.reset(
|
| @@ -45,6 +45,7 @@ class QuicFlowControllerTest : public ::testing::Test {
|
| QuicByteCount receive_window_;
|
| std::unique_ptr<QuicFlowController> flow_controller_;
|
| MockConnectionHelper helper_;
|
| + MockAlarmFactory alarm_factory_;
|
| MockConnection connection_;
|
| };
|
|
|
|
|