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

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: minor comment fix 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
« no previous file with comments | « net/quic/reliable_quic_stream_test.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/quic/reliable_quic_stream_test.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698