| 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_BASE_TEST_DATA_DIRECTORY_H_ | 5 #ifndef NET_BASE_TEST_DATA_DIRECTORY_H_ |
| 6 #define NET_BASE_TEST_DATA_DIRECTORY_H_ | 6 #define NET_BASE_TEST_DATA_DIRECTORY_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 | 9 |
| 10 namespace net { | 10 namespace net { |
| 11 | 11 |
| 12 // Returns the FilePath object representing the absolute path in the source | 12 // Returns the FilePath object representing the absolute path in the source |
| 13 // tree that contains certificates for testing. | 13 // tree that contains certificates for testing. |
| 14 base::FilePath GetTestCertsDirectory(); | 14 base::FilePath GetTestCertsDirectory(); |
| 15 | 15 |
| 16 // Returns the base::FilePath object representing the path to the certificate | 16 // Returns the base::FilePath object representing the path to client |
| 17 // directory in relation to the source root. | 17 // certificate files to be used in the |client_authorities| list |
| 18 base::FilePath GetTestCertsDirectoryRelative(); | 18 // of a net::SSLConfig object. For all other uses, use |
| 19 // GetTestCertsDirectory() instead. |
| 20 base::FilePath GetTestClientCertsDirectory(); |
| 19 | 21 |
| 20 // Returns the base::FilePath object representing the relative path containing | 22 // Returns the base::FilePath object representing the relative path containing |
| 21 // resource files for testing WebSocket. Typically the FilePath will be used as | 23 // resource files for testing WebSocket. Typically the FilePath will be used as |
| 22 // document root argument for net::TestServer with TYPE_WS or TYPE_WSS. | 24 // document root argument for net::TestServer with TYPE_WS or TYPE_WSS. |
| 23 base::FilePath GetWebSocketTestDataDirectory(); | 25 base::FilePath GetWebSocketTestDataDirectory(); |
| 24 | 26 |
| 25 } // namespace net | 27 } // namespace net |
| 26 | 28 |
| 27 #endif // NET_BASE_TEST_DATA_DIRECTORY_H_ | 29 #endif // NET_BASE_TEST_DATA_DIRECTORY_H_ |
| OLD | NEW |