| Index: net/quic/test_tools/crypto_test_utils.cc
|
| diff --git a/net/quic/test_tools/crypto_test_utils.cc b/net/quic/test_tools/crypto_test_utils.cc
|
| index ba3bce79420037ccae38e4ada96843c370f46475..811da803f1a59c3e60021afc2c6155436fa2a242 100644
|
| --- a/net/quic/test_tools/crypto_test_utils.cc
|
| +++ b/net/quic/test_tools/crypto_test_utils.cc
|
| @@ -189,7 +189,7 @@ int CryptoTestUtils::HandshakeWithFakeServer(
|
| server_conn->random_generator(), &config,
|
| &crypto_config);
|
|
|
| - TestServerSession server_session(server_conn, config, &crypto_config);
|
| + TestQuicSpdyServerSession server_session(server_conn, config, &crypto_config);
|
|
|
| // The client's handshake must have been started already.
|
| CHECK_NE(0u, client_conn->encrypted_packets_.size());
|
| @@ -232,8 +232,8 @@ int CryptoTestUtils::HandshakeWithFakeClient(
|
| // a working ProofSourceForTesting().
|
| crypto_config.SetProofVerifier(FakeProofVerifierForTesting());
|
| }
|
| - TestClientSession client_session(client_conn, DefaultQuicConfig(), server_id,
|
| - &crypto_config);
|
| + TestQuicSpdyClientSession client_session(client_conn, DefaultQuicConfig(),
|
| + server_id, &crypto_config);
|
|
|
| client_session.GetCryptoStream()->CryptoConnect();
|
| CHECK_EQ(1u, client_conn->encrypted_packets_.size());
|
|
|