| 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 <cstdarg> | 8 #include <cstdarg> |
| 9 #include <cstddef> | 9 #include <cstddef> |
| 10 #include <cstdint> | 10 #include <cstdint> |
| 11 #include <utility> | 11 #include <utility> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/logging.h" | |
| 15 #include "base/macros.h" | 14 #include "base/macros.h" |
| 16 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
| 17 #include "net/quic/core/crypto/crypto_framer.h" | 16 #include "net/quic/core/crypto/crypto_framer.h" |
| 18 #include "net/quic/core/quic_framer.h" | 17 #include "net/quic/core/quic_framer.h" |
| 19 #include "net/quic/core/quic_packets.h" | 18 #include "net/quic/core/quic_packets.h" |
| 20 #include "net/quic/test_tools/quic_test_utils.h" | 19 #include "net/quic/test_tools/quic_test_utils.h" |
| 21 | 20 |
| 22 namespace net { | 21 namespace net { |
| 23 | 22 |
| 24 class ChannelIDSource; | 23 class ChannelIDSource; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 static std::string GenerateClientPublicValuesHex(); | 237 static std::string GenerateClientPublicValuesHex(); |
| 239 | 238 |
| 240 DISALLOW_COPY_AND_ASSIGN(CryptoTestUtils); | 239 DISALLOW_COPY_AND_ASSIGN(CryptoTestUtils); |
| 241 }; | 240 }; |
| 242 | 241 |
| 243 } // namespace test | 242 } // namespace test |
| 244 | 243 |
| 245 } // namespace net | 244 } // namespace net |
| 246 | 245 |
| 247 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ | 246 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ |
| OLD | NEW |