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 <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <limits> | 9 #include <limits> |
10 #include <vector> | 10 #include <vector> |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 if (fixed_root.empty()) | 241 if (fixed_root.empty()) |
242 fixed_root = base::FilePath(base::FilePath::kCurrentDirectory); | 242 fixed_root = base::FilePath(base::FilePath::kCurrentDirectory); |
243 SetResourcePath(fixed_root, base::FilePath().AppendASCII("net") | 243 SetResourcePath(fixed_root, base::FilePath().AppendASCII("net") |
244 .AppendASCII("data") | 244 .AppendASCII("data") |
245 .AppendASCII("ssl") | 245 .AppendASCII("ssl") |
246 .AppendASCII("certificates")); | 246 .AppendASCII("certificates")); |
247 return true; | 247 return true; |
248 } | 248 } |
249 | 249 |
250 } // namespace net | 250 } // namespace net |
251 | |
OLD | NEW |