| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 12 #include "net/base/ip_endpoint.h" | 11 #include "net/base/ip_endpoint.h" |
| 13 #include "net/quic/quic_session.h" | 12 #include "net/quic/quic_session.h" |
| 14 #include "net/tools/quic/quic_dispatcher.h" | 13 #include "net/tools/quic/quic_dispatcher.h" |
| 15 #include "net/tools/quic/quic_server.h" | 14 #include "net/tools/quic/quic_server.h" |
| 16 #include "net/tools/quic/quic_simple_server_stream.h" | 15 #include "net/tools/quic/quic_simple_server_stream.h" |
| 17 | 16 |
| 18 namespace net { | 17 namespace net { |
| 19 | 18 |
| 20 namespace tools { | 19 namespace tools { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 const QuicCryptoServerConfig* crypto_config); | 92 const QuicCryptoServerConfig* crypto_config); |
| 94 }; | 93 }; |
| 95 | 94 |
| 96 } // namespace test | 95 } // namespace test |
| 97 | 96 |
| 98 } // namespace tools | 97 } // namespace tools |
| 99 | 98 |
| 100 } // namespace net | 99 } // namespace net |
| 101 | 100 |
| 102 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ | 101 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
| OLD | NEW |