| Index: net/quic/quic_client_session_test.cc
|
| diff --git a/net/quic/quic_client_session_test.cc b/net/quic/quic_client_session_test.cc
|
| index ba8ba9770ecece01aaca1cc7ec0aa51a8cf44026..758a174be4afd66d933b17d55710651c5f02cf6c 100644
|
| --- a/net/quic/quic_client_session_test.cc
|
| +++ b/net/quic/quic_client_session_test.cc
|
| @@ -28,6 +28,7 @@ namespace test {
|
| namespace {
|
|
|
| const char kServerHostname[] = "www.example.com";
|
| +const uint16 kServerPort = 80;
|
|
|
| class TestPacketWriter : public QuicDefaultPacketWriter {
|
| public:
|
| @@ -69,8 +70,8 @@ class QuicClientSessionTest : public ::testing::TestWithParam<QuicVersion> {
|
| new PacketSavingConnection(false, SupportedVersions(GetParam()))),
|
| session_(connection_, GetSocket().Pass(), writer_.Pass(), NULL,
|
| make_scoped_ptr((QuicServerInfo*)NULL), NULL,
|
| - kServerHostname, DefaultQuicConfig(), &crypto_config_,
|
| - &net_log_) {
|
| + QuicSessionKey(kServerHostname, kServerPort, false),
|
| + DefaultQuicConfig(), &crypto_config_, &net_log_) {
|
| session_.config()->SetDefaults();
|
| crypto_config_.SetDefaults();
|
| }
|
|
|