| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // A handful of resource-like constants related to the Chrome application. | 5 // A handful of resource-like constants related to the Chrome application. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ | 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 extern const base::FilePath::CharType kGuestProfileDir[]; | 47 extern const base::FilePath::CharType kGuestProfileDir[]; |
| 48 extern const wchar_t kBrowserResourcesDll[]; | 48 extern const wchar_t kBrowserResourcesDll[]; |
| 49 | 49 |
| 50 // filenames | 50 // filenames |
| 51 #if defined(OS_ANDROID) | 51 #if defined(OS_ANDROID) |
| 52 extern const base::FilePath::CharType kAndroidCacheFilename[]; | 52 extern const base::FilePath::CharType kAndroidCacheFilename[]; |
| 53 #endif | 53 #endif |
| 54 extern const base::FilePath::CharType kArchivedHistoryFilename[]; | 54 extern const base::FilePath::CharType kArchivedHistoryFilename[]; |
| 55 extern const base::FilePath::CharType kBookmarksFileName[]; | 55 extern const base::FilePath::CharType kBookmarksFileName[]; |
| 56 extern const base::FilePath::CharType kCacheDirname[]; | 56 extern const base::FilePath::CharType kCacheDirname[]; |
| 57 extern const base::FilePath::CharType kCookieFilename[]; | |
| 58 extern const base::FilePath::CharType kCRLSetFilename[]; | 57 extern const base::FilePath::CharType kCRLSetFilename[]; |
| 59 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 58 extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
| 60 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 59 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
| 61 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 60 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
| 62 extern const base::FilePath::CharType kFaviconsFilename[]; | 61 extern const base::FilePath::CharType kFaviconsFilename[]; |
| 63 extern const base::FilePath::CharType kFirstRunSentinel[]; | 62 extern const base::FilePath::CharType kFirstRunSentinel[]; |
| 64 extern const base::FilePath::CharType kHistoryFilename[]; | 63 extern const base::FilePath::CharType kHistoryFilename[]; |
| 65 extern const base::FilePath::CharType kJumpListIconDirname[]; | 64 extern const base::FilePath::CharType kJumpListIconDirname[]; |
| 66 extern const base::FilePath::CharType kLocalStateFilename[]; | 65 extern const base::FilePath::CharType kLocalStateFilename[]; |
| 67 extern const base::FilePath::CharType kLocalStorePoolName[]; | 66 extern const base::FilePath::CharType kLocalStorePoolName[]; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 // Ex.: /home/chronos/u-0123456789 | 142 // Ex.: /home/chronos/u-0123456789 |
| 144 extern const char kProfileDirPrefix[]; | 143 extern const char kProfileDirPrefix[]; |
| 145 #endif | 144 #endif |
| 146 | 145 |
| 147 // Used to identify the application to the system AV function in Windows. | 146 // Used to identify the application to the system AV function in Windows. |
| 148 extern const char kApplicationClientIDStringForAVScanning[]; | 147 extern const char kApplicationClientIDStringForAVScanning[]; |
| 149 | 148 |
| 150 } // namespace chrome | 149 } // namespace chrome |
| 151 | 150 |
| 152 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 151 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |