| 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/chromium/quic_chromium_client_session.h" | 5 #include "net/quic/chromium/quic_chromium_client_session.h" |
| 6 | 6 |
| 7 #include "base/base64.h" | 7 #include "base/base64.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "base/rand_util.h" | 10 #include "base/rand_util.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "net/quic/core/quic_client_promised_info.h" | 34 #include "net/quic/core/quic_client_promised_info.h" |
| 35 #include "net/quic/core/quic_packet_writer.h" | 35 #include "net/quic/core/quic_packet_writer.h" |
| 36 #include "net/quic/platform/api/quic_flags.h" | 36 #include "net/quic/platform/api/quic_flags.h" |
| 37 #include "net/quic/test_tools/crypto_test_utils.h" | 37 #include "net/quic/test_tools/crypto_test_utils.h" |
| 38 #include "net/quic/test_tools/quic_client_promised_info_peer.h" | 38 #include "net/quic/test_tools/quic_client_promised_info_peer.h" |
| 39 #include "net/quic/test_tools/quic_spdy_session_peer.h" | 39 #include "net/quic/test_tools/quic_spdy_session_peer.h" |
| 40 #include "net/quic/test_tools/quic_test_utils.h" | 40 #include "net/quic/test_tools/quic_test_utils.h" |
| 41 #include "net/quic/test_tools/simple_quic_framer.h" | 41 #include "net/quic/test_tools/simple_quic_framer.h" |
| 42 #include "net/socket/datagram_client_socket.h" | 42 #include "net/socket/datagram_client_socket.h" |
| 43 #include "net/socket/socket_test_util.h" | 43 #include "net/socket/socket_test_util.h" |
| 44 #include "net/spdy/spdy_test_utils.h" | 44 #include "net/spdy/core/spdy_test_utils.h" |
| 45 #include "net/test/cert_test_util.h" | 45 #include "net/test/cert_test_util.h" |
| 46 #include "net/test/gtest_util.h" | 46 #include "net/test/gtest_util.h" |
| 47 #include "net/test/test_data_directory.h" | 47 #include "net/test/test_data_directory.h" |
| 48 #include "testing/gmock/include/gmock/gmock.h" | 48 #include "testing/gmock/include/gmock/gmock.h" |
| 49 | 49 |
| 50 using testing::_; | 50 using testing::_; |
| 51 | 51 |
| 52 namespace net { | 52 namespace net { |
| 53 namespace test { | 53 namespace test { |
| 54 namespace { | 54 namespace { |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 | 925 |
| 926 EXPECT_TRUE(socket_data_->AllReadDataConsumed()); | 926 EXPECT_TRUE(socket_data_->AllReadDataConsumed()); |
| 927 EXPECT_TRUE(socket_data_->AllWriteDataConsumed()); | 927 EXPECT_TRUE(socket_data_->AllWriteDataConsumed()); |
| 928 EXPECT_TRUE(new_socket_data.AllReadDataConsumed()); | 928 EXPECT_TRUE(new_socket_data.AllReadDataConsumed()); |
| 929 EXPECT_TRUE(new_socket_data.AllWriteDataConsumed()); | 929 EXPECT_TRUE(new_socket_data.AllWriteDataConsumed()); |
| 930 } | 930 } |
| 931 | 931 |
| 932 } // namespace | 932 } // namespace |
| 933 } // namespace test | 933 } // namespace test |
| 934 } // namespace net | 934 } // namespace net |
| OLD | NEW |