Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: net/test/embedded_test_server/embedded_test_server.h

Issue 2332473002: Use new BoringSSL scopers in //crypto (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/ssl/token_binding.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/ssl/token_binding.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698