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/test/remote_test_server.h" | 5 #include "net/test/remote_test_server.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/json/json_writer.h" | 12 #include "base/json/json_writer.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
16 #include "base/string_split.h" | 16 #include "base/strings/string_split.h" |
17 #include "base/values.h" | 17 #include "base/values.h" |
18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
19 #include "net/base/host_port_pair.h" | 19 #include "net/base/host_port_pair.h" |
20 #include "net/base/net_errors.h" | 20 #include "net/base/net_errors.h" |
21 #include "net/test/spawner_communicator.h" | 21 #include "net/test/spawner_communicator.h" |
22 | 22 |
23 namespace net { | 23 namespace net { |
24 | 24 |
25 namespace { | 25 namespace { |
26 | 26 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 195 |
196 SetResourcePath(document_root, base::FilePath().AppendASCII("net") | 196 SetResourcePath(document_root, base::FilePath().AppendASCII("net") |
197 .AppendASCII("data") | 197 .AppendASCII("data") |
198 .AppendASCII("ssl") | 198 .AppendASCII("ssl") |
199 .AppendASCII("certificates")); | 199 .AppendASCII("certificates")); |
200 return true; | 200 return true; |
201 } | 201 } |
202 | 202 |
203 } // namespace net | 203 } // namespace net |
204 | 204 |
OLD | NEW |