| 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/spawned_test_server/remote_test_server.h" | 5 #include "net/test/spawned_test_server/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" | |
| 11 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/files/file_util.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/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
| 16 #include "base/strings/string_split.h" | 16 #include "base/strings/string_split.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "net/base/host_port_pair.h" | 18 #include "net/base/host_port_pair.h" |
| 19 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
| 20 #include "net/test/spawned_test_server/spawner_communicator.h" | 20 #include "net/test/spawned_test_server/spawner_communicator.h" |
| 21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 fixed_root = base::FilePath(base::FilePath::kCurrentDirectory); | 199 fixed_root = base::FilePath(base::FilePath::kCurrentDirectory); |
| 200 SetResourcePath(fixed_root, base::FilePath().AppendASCII("net") | 200 SetResourcePath(fixed_root, base::FilePath().AppendASCII("net") |
| 201 .AppendASCII("data") | 201 .AppendASCII("data") |
| 202 .AppendASCII("ssl") | 202 .AppendASCII("ssl") |
| 203 .AppendASCII("certificates")); | 203 .AppendASCII("certificates")); |
| 204 return true; | 204 return true; |
| 205 } | 205 } |
| 206 | 206 |
| 207 } // namespace net | 207 } // namespace net |
| 208 | 208 |
| OLD | NEW |