diff options
Diffstat (limited to 'base/base_paths.h')
-rw-r--r-- | base/base_paths.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/base/base_paths.h b/base/base_paths.h index 86c7a4b..8ec19e5 100644 --- a/base/base_paths.h +++ b/base/base_paths.h @@ -13,8 +13,6 @@ #include "base/base_paths_win.h" #elif defined(OS_MACOSX) #include "base/base_paths_mac.h" -#elif defined(OS_LINUX) || defined(OS_FREEBSD) -#include "base/base_paths_linux.h" #endif #include "base/path_service.h" @@ -27,6 +25,14 @@ enum { DIR_EXE, // directory containing FILE_EXE DIR_MODULE, // directory containing FILE_MODULE DIR_TEMP, // temporary directory + FILE_EXE, // Path and filename of the current executable. + FILE_MODULE, // Path and filename of the module containing the code for the + // PathService (which could differ from FILE_EXE if the + // PathService were compiled into a shared object, for example). + DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful + // for tests that need to locate various resources. It + // should not be used outside of test code. + PATH_END }; |