| Index: net/quic/test_tools/crypto_test_utils.h
|
| diff --git a/net/quic/test_tools/crypto_test_utils.h b/net/quic/test_tools/crypto_test_utils.h
|
| index 6251396f1538910ba5c69b71524981c25e745b3b..a205074cd3bb44f9ab1b387f470a5ed69b501cff 100644
|
| --- a/net/quic/test_tools/crypto_test_utils.h
|
| +++ b/net/quic/test_tools/crypto_test_utils.h
|
| @@ -14,7 +14,8 @@
|
|
|
| namespace net {
|
|
|
| -class QuicCryptoStream;
|
| +class QuicCryptoClientStream;
|
| +class QuicCryptoServerStream;
|
|
|
| namespace test {
|
|
|
| @@ -23,10 +24,14 @@ class PacketSavingConnection;
|
| class CryptoTestUtils {
|
| public:
|
| static void HandshakeWithFakeServer(PacketSavingConnection* client_conn,
|
| - QuicCryptoStream* client);
|
| + QuicCryptoClientStream* client);
|
|
|
| static void HandshakeWithFakeClient(PacketSavingConnection* server_conn,
|
| - QuicCryptoStream* server);
|
| + QuicCryptoServerStream* server);
|
| +
|
| + private:
|
| + static void CompareClientAndServerKeys(QuicCryptoClientStream* client,
|
| + QuicCryptoServerStream* server);
|
| };
|
|
|
| } // namespace test
|
|
|