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 #ifndef NET_TEST_EMBEDDED_TEST_SERVER_EMBEDDED_TEST_SERVER_H_ | 5 #ifndef NET_TEST_EMBEDDED_TEST_SERVER_EMBEDDED_TEST_SERVER_H_ |
6 #define NET_TEST_EMBEDDED_TEST_SERVER_EMBEDDED_TEST_SERVER_H_ | 6 #define NET_TEST_EMBEDDED_TEST_SERVER_EMBEDDED_TEST_SERVER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/callback.h" | 15 #include "base/callback.h" |
16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
17 #include "base/files/file_path.h" | 17 #include "base/files/file_path.h" |
18 #include "base/macros.h" | 18 #include "base/macros.h" |
19 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
20 #include "base/memory/weak_ptr.h" | 20 #include "base/memory/weak_ptr.h" |
21 #include "base/threading/thread.h" | 21 #include "base/threading/thread.h" |
22 #include "base/threading/thread_checker.h" | 22 #include "base/threading/thread_checker.h" |
23 #include "crypto/rsa_private_key.h" | |
24 #include "net/base/address_list.h" | 23 #include "net/base/address_list.h" |
25 #include "net/base/host_port_pair.h" | 24 #include "net/base/host_port_pair.h" |
26 #include "net/base/ip_endpoint.h" | 25 #include "net/base/ip_endpoint.h" |
27 #include "net/cert/x509_certificate.h" | 26 #include "net/cert/x509_certificate.h" |
28 #include "net/socket/ssl_server_socket.h" | 27 #include "net/socket/ssl_server_socket.h" |
29 #include "net/socket/stream_socket.h" | 28 #include "net/socket/stream_socket.h" |
30 #include "net/socket/tcp_server_socket.h" | 29 #include "net/socket/tcp_server_socket.h" |
31 #include "net/ssl/ssl_server_config.h" | 30 #include "net/ssl/ssl_server_config.h" |
32 #include "url/gurl.h" | 31 #include "url/gurl.h" |
33 | 32 |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 }; | 296 }; |
298 | 297 |
299 } // namespace test_server | 298 } // namespace test_server |
300 | 299 |
301 // TODO(svaldez): Refactor EmbeddedTestServer to be in the net namespace. | 300 // TODO(svaldez): Refactor EmbeddedTestServer to be in the net namespace. |
302 using test_server::EmbeddedTestServer; | 301 using test_server::EmbeddedTestServer; |
303 | 302 |
304 } // namespace net | 303 } // namespace net |
305 | 304 |
306 #endif // NET_TEST_EMBEDDED_TEST_SERVER_EMBEDDED_TEST_SERVER_H_ | 305 #endif // NET_TEST_EMBEDDED_TEST_SERVER_EMBEDDED_TEST_SERVER_H_ |
OLD | NEW |