michael@0: // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: #ifndef BASE_BASE_PATHS_H_ michael@0: #define BASE_BASE_PATHS_H_ michael@0: michael@0: // This file declares path keys for the base module. These can be used with michael@0: // the PathService to access various special directories and files. michael@0: michael@0: #include "base/basictypes.h" michael@0: #if defined(OS_WIN) michael@0: #include "base/base_paths_win.h" michael@0: #elif defined(OS_MACOSX) michael@0: #include "base/base_paths_mac.h" michael@0: #elif defined(OS_LINUX) || defined(OS_BSD) michael@0: #include "base/base_paths_linux.h" michael@0: #endif michael@0: #include "base/path_service.h" michael@0: michael@0: namespace base { michael@0: michael@0: enum { michael@0: PATH_START = 0, michael@0: michael@0: DIR_CURRENT, // current directory michael@0: DIR_EXE, // directory containing FILE_EXE michael@0: DIR_MODULE, // directory containing FILE_MODULE michael@0: DIR_TEMP, // temporary directory michael@0: PATH_END michael@0: }; michael@0: michael@0: } // namespace base michael@0: michael@0: #endif // BASE_BASE_PATHS_H_