diff options
Diffstat (limited to 'base/base_paths.h')
-rw-r--r-- | base/base_paths.h | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/base/base_paths.h b/base/base_paths.h index 60a59ca..ba844b8 100644 --- a/base/base_paths.h +++ b/base/base_paths.h @@ -33,6 +33,11 @@ // This file declares path keys for the base module. These can be used with // the PathService to access various special directories and files. +#include "base/basictypes.h" +#ifdef OS_WIN +#include "base/base_paths_win.h" +#endif + namespace base { enum { @@ -41,27 +46,10 @@ enum { DIR_CURRENT, // current directory DIR_EXE, // directory containing FILE_EXE DIR_MODULE, // directory containing FILE_MODULE - 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 DLL, for example) DIR_TEMP, // temporary directory - DIR_WINDOWS, // Windows directory, usually "c:\windows" - DIR_SYSTEM, // Usually c:\windows\system32" - DIR_PROGRAM_FILES, // Usually c:\program files - 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. - DIR_APP_DATA, // Application Data directory under the user profile. - DIR_LOCAL_APP_DATA_LOW, // Local AppData directory for low integrity level. - DIR_LOCAL_APP_DATA, // "Local Settings\Application Data" directory under the - // user profile. - DIR_IE_INTERNET_CACHE, // Temporary Internet Files directory. - DIR_COMMON_START_MENU, // Usually "C:\Documents and Settings\All Users\ - // Start Menu\Programs" - DIR_START_MENU, // Usually "C:\Documents and Settings\<user>\ - // Start Menu\Programs" PATH_END }; |