OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/tools/quic/quic_server_session_base.h" | 5 #include "net/tools/quic/quic_server_session_base.h" |
6 | 6 |
| 7 #include <cstdint> |
| 8 #include <memory> |
| 9 |
7 #include "base/macros.h" | 10 #include "base/macros.h" |
8 #include "net/quic/crypto/quic_crypto_server_config.h" | 11 #include "net/quic/crypto/quic_crypto_server_config.h" |
9 #include "net/quic/crypto/quic_random.h" | 12 #include "net/quic/crypto/quic_random.h" |
10 #include "net/quic/proto/cached_network_parameters.pb.h" | 13 #include "net/quic/proto/cached_network_parameters.pb.h" |
11 #include "net/quic/quic_connection.h" | 14 #include "net/quic/quic_connection.h" |
12 #include "net/quic/quic_crypto_server_stream.h" | 15 #include "net/quic/quic_crypto_server_stream.h" |
13 #include "net/quic/quic_utils.h" | 16 #include "net/quic/quic_utils.h" |
14 #include "net/quic/test_tools/crypto_test_utils.h" | 17 #include "net/quic/test_tools/crypto_test_utils.h" |
15 #include "net/quic/test_tools/quic_config_peer.h" | 18 #include "net/quic/test_tools/quic_config_peer.h" |
16 #include "net/quic/test_tools/quic_connection_peer.h" | 19 #include "net/quic/test_tools/quic_connection_peer.h" |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 EXPECT_FALSE( | 547 EXPECT_FALSE( |
545 QuicServerSessionBasePeer::IsBandwidthResumptionEnabled(session_.get())); | 548 QuicServerSessionBasePeer::IsBandwidthResumptionEnabled(session_.get())); |
546 session_->OnConfigNegotiated(); | 549 session_->OnConfigNegotiated(); |
547 EXPECT_FALSE( | 550 EXPECT_FALSE( |
548 QuicServerSessionBasePeer::IsBandwidthResumptionEnabled(session_.get())); | 551 QuicServerSessionBasePeer::IsBandwidthResumptionEnabled(session_.get())); |
549 } | 552 } |
550 | 553 |
551 } // namespace | 554 } // namespace |
552 } // namespace test | 555 } // namespace test |
553 } // namespace net | 556 } // namespace net |
OLD | NEW |