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_packet_generator.h" | 5 #include "net/quic/core/quic_packet_generator.h" |
6 | 6 |
7 #include <cstdint> | 7 #include <cstdint> |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "net/quic/crypto/crypto_protocol.h" | 12 #include "net/quic/core/crypto/crypto_protocol.h" |
13 #include "net/quic/crypto/null_encrypter.h" | 13 #include "net/quic/core/crypto/null_encrypter.h" |
14 #include "net/quic/crypto/quic_decrypter.h" | 14 #include "net/quic/core/crypto/quic_decrypter.h" |
15 #include "net/quic/crypto/quic_encrypter.h" | 15 #include "net/quic/core/crypto/quic_encrypter.h" |
16 #include "net/quic/quic_flags.h" | 16 #include "net/quic/core/quic_flags.h" |
17 #include "net/quic/quic_simple_buffer_allocator.h" | 17 #include "net/quic/core/quic_simple_buffer_allocator.h" |
18 #include "net/quic/quic_utils.h" | 18 #include "net/quic/core/quic_utils.h" |
19 #include "net/quic/test_tools/quic_packet_creator_peer.h" | 19 #include "net/quic/test_tools/quic_packet_creator_peer.h" |
20 #include "net/quic/test_tools/quic_packet_generator_peer.h" | 20 #include "net/quic/test_tools/quic_packet_generator_peer.h" |
21 #include "net/quic/test_tools/quic_test_utils.h" | 21 #include "net/quic/test_tools/quic_test_utils.h" |
22 #include "net/quic/test_tools/simple_quic_framer.h" | 22 #include "net/quic/test_tools/simple_quic_framer.h" |
23 #include "net/test/gtest_util.h" | 23 #include "net/test/gtest_util.h" |
24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
26 | 26 |
27 using base::StringPiece; | 27 using base::StringPiece; |
28 using std::string; | 28 using std::string; |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 EXPECT_CALL(delegate_, OnSerializedPacket(_)) | 871 EXPECT_CALL(delegate_, OnSerializedPacket(_)) |
872 .WillOnce(Invoke(this, &QuicPacketGeneratorTest::SavePacket)); | 872 .WillOnce(Invoke(this, &QuicPacketGeneratorTest::SavePacket)); |
873 generator_.FlushAllQueuedFrames(); | 873 generator_.FlushAllQueuedFrames(); |
874 EXPECT_FALSE(generator_.HasQueuedFrames()); | 874 EXPECT_FALSE(generator_.HasQueuedFrames()); |
875 generator_.SetCurrentPath(kTestPathId1, 1, 0); | 875 generator_.SetCurrentPath(kTestPathId1, 1, 0); |
876 EXPECT_EQ(kTestPathId1, QuicPacketCreatorPeer::GetCurrentPath(creator_)); | 876 EXPECT_EQ(kTestPathId1, QuicPacketCreatorPeer::GetCurrentPath(creator_)); |
877 } | 877 } |
878 | 878 |
879 } // namespace test | 879 } // namespace test |
880 } // namespace net | 880 } // namespace net |
OLD | NEW |