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 b3c75c4c6085ea181c6b4adfe75c2437610508ba..4562a142d3b98e989045e8f973742afa13367612 100644 |
--- a/net/quic/quic_flow_controller_test.cc |
+++ b/net/quic/quic_flow_controller_test.cc |
@@ -23,12 +23,11 @@ class QuicFlowControllerTest : public ::testing::Test { |
send_window_(kInitialSessionFlowControlWindowForTest), |
receive_window_(kInitialSessionFlowControlWindowForTest), |
max_receive_window_(kInitialSessionFlowControlWindowForTest), |
- connection_(false) { |
- } |
+ connection_(Perspective::IS_CLIENT) {} |
void Initialize() { |
flow_controller_.reset(new QuicFlowController( |
- &connection_, stream_id_, false, send_window_, |
+ &connection_, stream_id_, Perspective::IS_CLIENT, send_window_, |
receive_window_, max_receive_window_)); |
} |