| 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 21d889ad538f751842bb2898c298022732c07ac2..59270b25155c465727df54f7d78c3faf66b759bb 100644
|
| --- a/net/quic/test_tools/crypto_test_utils.cc
|
| +++ b/net/quic/test_tools/crypto_test_utils.cc
|
| @@ -271,7 +271,7 @@ CryptoTestUtils::FakeClientOptions::FakeClientOptions()
|
|
|
| // static
|
| int CryptoTestUtils::HandshakeWithFakeServer(
|
| - MockConnectionHelper* helper,
|
| + MockQuicConnectionHelper* helper,
|
| MockAlarmFactory* alarm_factory,
|
| PacketSavingConnection* client_conn,
|
| QuicCryptoClientStream* client,
|
| @@ -305,7 +305,7 @@ int CryptoTestUtils::HandshakeWithFakeServer(
|
|
|
| // static
|
| int CryptoTestUtils::HandshakeWithFakeClient(
|
| - MockConnectionHelper* helper,
|
| + MockQuicConnectionHelper* helper,
|
| MockAlarmFactory* alarm_factory,
|
| PacketSavingConnection* server_conn,
|
| QuicCryptoServerStream* server,
|
| @@ -792,7 +792,7 @@ void CryptoTestUtils::MovePackets(PacketSavingConnection* source_conn,
|
|
|
| for (const QuicStreamFrame* stream_frame : framer.stream_frames()) {
|
| ASSERT_TRUE(crypto_framer.ProcessInput(
|
| - StringPiece(stream_frame->frame_buffer, stream_frame->frame_length)));
|
| + StringPiece(stream_frame->data_buffer, stream_frame->data_length)));
|
| ASSERT_FALSE(crypto_visitor.error());
|
| }
|
| }
|
|
|