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_MAC_H_ michael@0: #define BASE_BASE_PATHS_MAC_H_ michael@0: michael@0: // This file declares Mac-specific path keys for the base module. michael@0: // These can be used with the PathService to access various special michael@0: // directories and files. michael@0: michael@0: namespace base { michael@0: michael@0: enum { michael@0: PATH_MAC_START = 200, michael@0: michael@0: FILE_EXE, // path and filename of the current executable michael@0: FILE_MODULE, // path and filename of the module containing the code for the michael@0: // PathService (which could differ from FILE_EXE if the michael@0: // PathService were compiled into a library, for example) michael@0: DIR_APP_DATA, // ~/Library/Application Support/Google/Chrome michael@0: DIR_LOCAL_APP_DATA, // same as above (can we remove?) michael@0: DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful michael@0: // for tests that need to locate various resources. It michael@0: // should not be used outside of test code. michael@0: PATH_MAC_END michael@0: }; michael@0: michael@0: } // namespace base michael@0: michael@0: #endif // BASE_BASE_PATHS_MAC_H_