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 #include "net/quic/quic_framer.h" | 5 #include "net/quic/core/quic_framer.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
17 #include "net/quic/crypto/null_decrypter.h" | 17 #include "net/quic/core/crypto/null_decrypter.h" |
18 #include "net/quic/crypto/quic_decrypter.h" | 18 #include "net/quic/core/crypto/quic_decrypter.h" |
19 #include "net/quic/crypto/quic_encrypter.h" | 19 #include "net/quic/core/crypto/quic_encrypter.h" |
20 #include "net/quic/quic_protocol.h" | 20 #include "net/quic/core/quic_protocol.h" |
21 #include "net/quic/quic_utils.h" | 21 #include "net/quic/core/quic_utils.h" |
22 #include "net/quic/test_tools/quic_framer_peer.h" | 22 #include "net/quic/test_tools/quic_framer_peer.h" |
23 #include "net/quic/test_tools/quic_test_utils.h" | 23 #include "net/quic/test_tools/quic_test_utils.h" |
24 #include "net/test/gtest_util.h" | 24 #include "net/test/gtest_util.h" |
25 | 25 |
26 using base::StringPiece; | 26 using base::StringPiece; |
27 using std::make_pair; | 27 using std::make_pair; |
28 using std::map; | 28 using std::map; |
29 using std::numeric_limits; | 29 using std::numeric_limits; |
30 using std::pair; | 30 using std::pair; |
31 using std::string; | 31 using std::string; |
(...skipping 7151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7183 'o', ' ', 'w', 'o', | 7183 'o', ' ', 'w', 'o', |
7184 'r', 'l', 'd', '!', | 7184 'r', 'l', 'd', '!', |
7185 }; | 7185 }; |
7186 // clang-format on | 7186 // clang-format on |
7187 | 7187 |
7188 QuicFramerFuzzFunc(packet, arraysize(packet)); | 7188 QuicFramerFuzzFunc(packet, arraysize(packet)); |
7189 } | 7189 } |
7190 | 7190 |
7191 } // namespace test | 7191 } // namespace test |
7192 } // namespace net | 7192 } // namespace net |
OLD | NEW |