| 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/core/quic_session.h" | 5 #include "net/quic/core/quic_session.h" |
| 6 | 6 |
| 7 #include <cstdint> | 7 #include <cstdint> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/rand_util.h" | 11 #include "base/rand_util.h" |
| 12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 #include "net/quic/core/crypto/crypto_protocol.h" | 13 #include "net/quic/core/crypto/crypto_protocol.h" |
| 14 #include "net/quic/core/crypto/null_encrypter.h" | 14 #include "net/quic/core/crypto/null_encrypter.h" |
| 15 #include "net/quic/core/quic_crypto_stream.h" | 15 #include "net/quic/core/quic_crypto_stream.h" |
| 16 #include "net/quic/core/quic_flags.h" | |
| 17 #include "net/quic/core/quic_packets.h" | 16 #include "net/quic/core/quic_packets.h" |
| 18 #include "net/quic/core/quic_stream.h" | 17 #include "net/quic/core/quic_stream.h" |
| 19 #include "net/quic/core/quic_utils.h" | 18 #include "net/quic/core/quic_utils.h" |
| 19 #include "net/quic/platform/api/quic_flags.h" |
| 20 #include "net/quic/platform/api/quic_map_util.h" | 20 #include "net/quic/platform/api/quic_map_util.h" |
| 21 #include "net/quic/platform/api/quic_ptr_util.h" | 21 #include "net/quic/platform/api/quic_ptr_util.h" |
| 22 #include "net/quic/platform/api/quic_str_cat.h" | 22 #include "net/quic/platform/api/quic_str_cat.h" |
| 23 #include "net/quic/platform/api/quic_string_piece.h" | 23 #include "net/quic/platform/api/quic_string_piece.h" |
| 24 #include "net/quic/test_tools/quic_config_peer.h" | 24 #include "net/quic/test_tools/quic_config_peer.h" |
| 25 #include "net/quic/test_tools/quic_connection_peer.h" | 25 #include "net/quic/test_tools/quic_connection_peer.h" |
| 26 #include "net/quic/test_tools/quic_flow_controller_peer.h" | 26 #include "net/quic/test_tools/quic_flow_controller_peer.h" |
| 27 #include "net/quic/test_tools/quic_session_peer.h" | 27 #include "net/quic/test_tools/quic_session_peer.h" |
| 28 #include "net/quic/test_tools/quic_spdy_session_peer.h" | 28 #include "net/quic/test_tools/quic_spdy_session_peer.h" |
| 29 #include "net/quic/test_tools/quic_spdy_stream_peer.h" | 29 #include "net/quic/test_tools/quic_spdy_stream_peer.h" |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 if (version() != QUIC_VERSION_36) { | 1314 if (version() != QUIC_VERSION_36) { |
| 1315 EXPECT_FALSE(session_.force_hol_blocking()); | 1315 EXPECT_FALSE(session_.force_hol_blocking()); |
| 1316 } else { | 1316 } else { |
| 1317 EXPECT_TRUE(session_.force_hol_blocking()); | 1317 EXPECT_TRUE(session_.force_hol_blocking()); |
| 1318 } | 1318 } |
| 1319 } | 1319 } |
| 1320 | 1320 |
| 1321 } // namespace | 1321 } // namespace |
| 1322 } // namespace test | 1322 } // namespace test |
| 1323 } // namespace net | 1323 } // namespace net |
| OLD | NEW |