Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(995)

Unified Diff: net/quic/test_tools/crypto_test_utils.h

Issue 12806002: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment update to hkdf.cc Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698