| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 extern const wchar_t kStatusTrayWindowClass[]; | 55 extern const wchar_t kStatusTrayWindowClass[]; |
| 56 #endif // defined(OS_WIN) | 56 #endif // defined(OS_WIN) |
| 57 extern const wchar_t kCrashReportLog[]; | 57 extern const wchar_t kCrashReportLog[]; |
| 58 extern const wchar_t kTestingInterfaceDLL[]; | 58 extern const wchar_t kTestingInterfaceDLL[]; |
| 59 extern const char kInitialProfile[]; | 59 extern const char kInitialProfile[]; |
| 60 extern const char kMultiProfileDirPrefix[]; | 60 extern const char kMultiProfileDirPrefix[]; |
| 61 extern const base::FilePath::CharType kGuestProfileDir[]; | 61 extern const base::FilePath::CharType kGuestProfileDir[]; |
| 62 extern const wchar_t kBrowserResourcesDll[]; | 62 extern const wchar_t kBrowserResourcesDll[]; |
| 63 | 63 |
| 64 // filenames | 64 // filenames |
| 65 #if defined(OS_ANDROID) | |
| 66 extern const base::FilePath::CharType kAndroidCacheFilename[]; | |
| 67 #endif | |
| 68 extern const base::FilePath::CharType kArchivedHistoryFilename[]; | |
| 69 extern const base::FilePath::CharType kCacheDirname[]; | 65 extern const base::FilePath::CharType kCacheDirname[]; |
| 70 extern const base::FilePath::CharType kChannelIDFilename[]; | 66 extern const base::FilePath::CharType kChannelIDFilename[]; |
| 71 extern const base::FilePath::CharType kCookieFilename[]; | 67 extern const base::FilePath::CharType kCookieFilename[]; |
| 72 extern const base::FilePath::CharType kCRLSetFilename[]; | 68 extern const base::FilePath::CharType kCRLSetFilename[]; |
| 73 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 69 extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
| 74 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 70 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
| 75 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 71 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
| 76 extern const base::FilePath::CharType kFaviconsFilename[]; | |
| 77 extern const base::FilePath::CharType kFirstRunSentinel[]; | 72 extern const base::FilePath::CharType kFirstRunSentinel[]; |
| 78 extern const base::FilePath::CharType kGCMStoreDirname[]; | 73 extern const base::FilePath::CharType kGCMStoreDirname[]; |
| 79 extern const base::FilePath::CharType kHistoryFilename[]; | |
| 80 extern const base::FilePath::CharType kJumpListIconDirname[]; | 74 extern const base::FilePath::CharType kJumpListIconDirname[]; |
| 81 extern const base::FilePath::CharType kLocalStateFilename[]; | 75 extern const base::FilePath::CharType kLocalStateFilename[]; |
| 82 extern const base::FilePath::CharType kLocalStorePoolName[]; | 76 extern const base::FilePath::CharType kLocalStorePoolName[]; |
| 83 extern const base::FilePath::CharType kLoginDataFileName[]; | 77 extern const base::FilePath::CharType kLoginDataFileName[]; |
| 84 extern const base::FilePath::CharType kMediaCacheDirname[]; | 78 extern const base::FilePath::CharType kMediaCacheDirname[]; |
| 85 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; | 79 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; |
| 86 extern const base::FilePath::CharType kPreferencesFilename[]; | 80 extern const base::FilePath::CharType kPreferencesFilename[]; |
| 87 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; | 81 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; |
| 88 extern const base::FilePath::CharType kReadmeFilename[]; | 82 extern const base::FilePath::CharType kReadmeFilename[]; |
| 89 extern const base::FilePath::CharType kResetPromptMementoFilename[]; | 83 extern const base::FilePath::CharType kResetPromptMementoFilename[]; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 153 |
| 160 // Used to identify the application to the system AV function in Windows. | 154 // Used to identify the application to the system AV function in Windows. |
| 161 extern const char kApplicationClientIDStringForAVScanning[]; | 155 extern const char kApplicationClientIDStringForAVScanning[]; |
| 162 | 156 |
| 163 // The largest reasonable length we'd assume for a meta tag attribute. | 157 // The largest reasonable length we'd assume for a meta tag attribute. |
| 164 extern const size_t kMaxMetaTagAttributeLength; | 158 extern const size_t kMaxMetaTagAttributeLength; |
| 165 | 159 |
| 166 } // namespace chrome | 160 } // namespace chrome |
| 167 | 161 |
| 168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 162 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |