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

Side by Side Diff: net/quic/test_tools/crypto_test_utils.h

Issue 1977153002: Rename various MockConnectionFoo classes to MockQuicConnectionFoo. No behavior change. This is cons… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@121576119
Patch Set: Created 4 years, 7 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_
6 #define NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ 6 #define NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_
7 7
8 #include <stdarg.h> 8 #include <stdarg.h>
9 #include <stddef.h> 9 #include <stddef.h>
10 #include <stdint.h> 10 #include <stdint.h>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // If channel_id_source_async is true then the client will use an async 78 // If channel_id_source_async is true then the client will use an async
79 // ChannelIDSource for testing. Ignored if channel_id_enabled is false. 79 // ChannelIDSource for testing. Ignored if channel_id_enabled is false.
80 bool channel_id_source_async; 80 bool channel_id_source_async;
81 81
82 // If token_binding_enabled is true, then the client will attempt to 82 // If token_binding_enabled is true, then the client will attempt to
83 // negotiate Token Binding. 83 // negotiate Token Binding.
84 bool token_binding_enabled; 84 bool token_binding_enabled;
85 }; 85 };
86 86
87 // returns: the number of client hellos that the client sent. 87 // returns: the number of client hellos that the client sent.
88 static int HandshakeWithFakeServer(MockConnectionHelper* helper, 88 static int HandshakeWithFakeServer(MockQuicConnectionHelper* helper,
89 MockAlarmFactory* alarm_factory, 89 MockAlarmFactory* alarm_factory,
90 PacketSavingConnection* client_conn, 90 PacketSavingConnection* client_conn,
91 QuicCryptoClientStream* client, 91 QuicCryptoClientStream* client,
92 const FakeServerOptions& options); 92 const FakeServerOptions& options);
93 93
94 // returns: the number of client hellos that the client sent. 94 // returns: the number of client hellos that the client sent.
95 static int HandshakeWithFakeClient(MockConnectionHelper* helper, 95 static int HandshakeWithFakeClient(MockQuicConnectionHelper* helper,
96 96
97 MockAlarmFactory* alarm_factory, 97 MockAlarmFactory* alarm_factory,
98 98
99 PacketSavingConnection* server_conn, 99 PacketSavingConnection* server_conn,
100 QuicCryptoServerStream* server, 100 QuicCryptoServerStream* server,
101 const QuicServerId& server_id, 101 const QuicServerId& server_id,
102 const FakeClientOptions& options); 102 const FakeClientOptions& options);
103 103
104 // SetupCryptoServerConfigForTest configures |config| and |crypto_config| 104 // SetupCryptoServerConfigForTest configures |config| and |crypto_config|
105 // with sensible defaults for testing. 105 // with sensible defaults for testing.
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 QuicCryptoServerStream* server); 208 QuicCryptoServerStream* server);
209 209
210 DISALLOW_COPY_AND_ASSIGN(CryptoTestUtils); 210 DISALLOW_COPY_AND_ASSIGN(CryptoTestUtils);
211 }; 211 };
212 212
213 } // namespace test 213 } // namespace test
214 214
215 } // namespace net 215 } // namespace net
216 216
217 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ 217 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_
OLDNEW
« 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