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 BASE_BASE_PATHS_H_ | 5 #ifndef BASE_BASE_PATHS_H_ |
6 #define BASE_BASE_PATHS_H_ | 6 #define BASE_BASE_PATHS_H_ |
7 | 7 |
8 // This file declares path keys for the base module. These can be used with | 8 // This file declares path keys for the base module. These can be used with |
9 // the PathService to access various special directories and files. | 9 // the PathService to access various special directories and files. |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 DIR_TEMP, // temporary directory | 33 DIR_TEMP, // temporary directory |
34 FILE_EXE, // Path and filename of the current executable. | 34 FILE_EXE, // Path and filename of the current executable. |
35 FILE_MODULE, // Path and filename of the module containing the code for the | 35 FILE_MODULE, // Path and filename of the module containing the code for the |
36 // PathService (which could differ from FILE_EXE if the | 36 // PathService (which could differ from FILE_EXE if the |
37 // PathService were compiled into a shared object, for example). | 37 // PathService were compiled into a shared object, for example). |
38 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful | 38 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful |
39 // for tests that need to locate various resources. It | 39 // for tests that need to locate various resources. It |
40 // should not be used outside of test code. | 40 // should not be used outside of test code. |
41 DIR_USER_DESKTOP, // The current user's Desktop. | 41 DIR_USER_DESKTOP, // The current user's Desktop. |
42 | 42 |
| 43 DIR_TEST_DATA, // Used only for testing. |
| 44 |
43 PATH_END | 45 PATH_END |
44 }; | 46 }; |
45 | 47 |
46 } // namespace base | 48 } // namespace base |
47 | 49 |
48 #endif // BASE_BASE_PATHS_H_ | 50 #endif // BASE_BASE_PATHS_H_ |
OLD | NEW |