| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 // This file declares path keys for the base module. These can be used with | 9 // This file declares path keys for the base module. These can be used with |
| 10 // the PathService to access various special directories and files. | 10 // the PathService to access various special directories and files. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 DIR_MODULE, // directory containing FILE_MODULE | 26 DIR_MODULE, // directory containing FILE_MODULE |
| 27 DIR_TEMP, // temporary directory | 27 DIR_TEMP, // temporary directory |
| 28 FILE_EXE, // Path and filename of the current executable. | 28 FILE_EXE, // Path and filename of the current executable. |
| 29 FILE_MODULE, // Path and filename of the module containing the code for the | 29 FILE_MODULE, // Path and filename of the module containing the code for the |
| 30 // PathService (which could differ from FILE_EXE if the | 30 // PathService (which could differ from FILE_EXE if the |
| 31 // PathService were compiled into a shared object, for example). | 31 // PathService were compiled into a shared object, for example). |
| 32 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful | 32 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful |
| 33 // for tests that need to locate various resources. It | 33 // for tests that need to locate various resources. It |
| 34 // should not be used outside of test code. | 34 // should not be used outside of test code. |
| 35 #if defined(OS_POSIX) | 35 #if defined(OS_POSIX) |
| 36 DIR_CACHE, // Directory where to put cache data. Note this is | 36 DIR_USER_CACHE, // Directory where user cache data resides. The Chromium |
| 37 // *not* where the browser cache lives, but the | 37 // browser cache can be a subdirectory of DIR_USER_CACHE. |
| 38 // browser cache can be a subdirectory. | 38 // This is $XDG_CACHE_HOME on Linux and ~/Library/Caches |
| 39 // This is $XDG_CACHE_HOME on Linux and | 39 // on Mac. |
| 40 // ~/Library/Caches on Mac. | |
| 41 #endif | 40 #endif |
| 42 | 41 |
| 43 PATH_END | 42 PATH_END |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 } // namespace base | 45 } // namespace base |
| 47 | 46 |
| 48 #endif // BASE_BASE_PATHS_H_ | 47 #endif // BASE_BASE_PATHS_H_ |
| OLD | NEW |