OLD | NEW |
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 | 9 |
10 #include <utility> | 10 #include <utility> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
| 13 #include "base/basictypes.h" |
13 #include "base/logging.h" | 14 #include "base/logging.h" |
14 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
15 #include "net/quic/crypto/crypto_framer.h" | 16 #include "net/quic/crypto/crypto_framer.h" |
16 #include "net/quic/quic_framer.h" | 17 #include "net/quic/quic_framer.h" |
17 #include "net/quic/quic_protocol.h" | 18 #include "net/quic/quic_protocol.h" |
18 | 19 |
19 namespace net { | 20 namespace net { |
20 | 21 |
21 class ChannelIDSigner; | 22 class ChannelIDSigner; |
22 class CommonCertSets; | 23 class CommonCertSets; |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 private: | 135 private: |
135 static void CompareClientAndServerKeys(QuicCryptoClientStream* client, | 136 static void CompareClientAndServerKeys(QuicCryptoClientStream* client, |
136 QuicCryptoServerStream* server); | 137 QuicCryptoServerStream* server); |
137 }; | 138 }; |
138 | 139 |
139 } // namespace test | 140 } // namespace test |
140 | 141 |
141 } // namespace net | 142 } // namespace net |
142 | 143 |
143 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ | 144 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ |
OLD | NEW |