| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ | 5 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
| 6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ | 6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/memory/scoped_ptr.h" | |
| 11 #include "net/base/ip_endpoint.h" | 11 #include "net/base/ip_endpoint.h" |
| 12 #include "net/quic/quic_session.h" | 12 #include "net/quic/quic_session.h" |
| 13 #include "net/tools/quic/quic_dispatcher.h" | 13 #include "net/tools/quic/quic_dispatcher.h" |
| 14 #include "net/tools/quic/quic_server.h" | 14 #include "net/tools/quic/quic_server.h" |
| 15 #include "net/tools/quic/quic_simple_server_session.h" | 15 #include "net/tools/quic/quic_simple_server_session.h" |
| 16 #include "net/tools/quic/quic_simple_server_stream.h" | 16 #include "net/tools/quic/quic_simple_server_stream.h" |
| 17 | 17 |
| 18 namespace net { | 18 namespace net { |
| 19 | 19 |
| 20 | 20 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 const QuicCryptoServerConfig* crypto_config, | 93 const QuicCryptoServerConfig* crypto_config, |
| 94 QuicCompressedCertsCache* compressed_certs_cache); | 94 QuicCompressedCertsCache* compressed_certs_cache); |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace test | 97 } // namespace test |
| 98 | 98 |
| 99 | 99 |
| 100 } // namespace net | 100 } // namespace net |
| 101 | 101 |
| 102 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ | 102 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
| OLD | NEW |