| Index: net/quic/quic_http_stream_test.cc
|
| diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc
|
| index 557e9768c4ead0820e1c62e483d8bcca0c72076e..206c00dacb1204752e50874544564a7c36858e9a 100644
|
| --- a/net/quic/quic_http_stream_test.cc
|
| +++ b/net/quic/quic_http_stream_test.cc
|
| @@ -60,7 +60,7 @@ class TestQuicConnection : public QuicConnection {
|
| QuicConnectionHelper* helper,
|
| QuicPacketWriter* writer)
|
| : QuicConnection(connection_id, address, helper, writer, false,
|
| - versions, kInitialFlowControlWindowForTest) {
|
| + versions) {
|
| }
|
|
|
| void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) {
|
| @@ -212,7 +212,9 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> {
|
| make_scoped_ptr((QuicServerInfo*)NULL),
|
| QuicServerId(kServerHostname, kServerPort,
|
| false, PRIVACY_MODE_DISABLED),
|
| - DefaultQuicConfig(), &crypto_config_, NULL));
|
| + DefaultQuicConfig(),
|
| + kInitialFlowControlWindowForTest, &crypto_config_,
|
| + NULL));
|
| session_->GetCryptoStream()->CryptoConnect();
|
| EXPECT_TRUE(session_->IsCryptoHandshakeConfirmed());
|
| stream_.reset(use_closing_stream_ ?
|
|
|