| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 extern const base::FilePath::CharType kHistoryFilename[]; | 79 extern const base::FilePath::CharType kHistoryFilename[]; |
| 80 extern const base::FilePath::CharType kJumpListIconDirname[]; | 80 extern const base::FilePath::CharType kJumpListIconDirname[]; |
| 81 extern const base::FilePath::CharType kLocalStateFilename[]; | 81 extern const base::FilePath::CharType kLocalStateFilename[]; |
| 82 extern const base::FilePath::CharType kLocalStorePoolName[]; | 82 extern const base::FilePath::CharType kLocalStorePoolName[]; |
| 83 extern const base::FilePath::CharType kLoginDataFileName[]; | 83 extern const base::FilePath::CharType kLoginDataFileName[]; |
| 84 extern const base::FilePath::CharType kMediaCacheDirname[]; | 84 extern const base::FilePath::CharType kMediaCacheDirname[]; |
| 85 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; | 85 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; |
| 86 extern const base::FilePath::CharType kPreferencesFilename[]; | 86 extern const base::FilePath::CharType kPreferencesFilename[]; |
| 87 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; | 87 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; |
| 88 extern const base::FilePath::CharType kReadmeFilename[]; | 88 extern const base::FilePath::CharType kReadmeFilename[]; |
| 89 extern const base::FilePath::CharType kResetPromptMementoFilename[]; |
| 89 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; | 90 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; |
| 90 extern const base::FilePath::CharType kSecurePreferencesFilename[]; | 91 extern const base::FilePath::CharType kSecurePreferencesFilename[]; |
| 91 extern const base::FilePath::CharType kServiceStateFileName[]; | 92 extern const base::FilePath::CharType kServiceStateFileName[]; |
| 92 extern const base::FilePath::CharType kShortcutsDatabaseName[]; | 93 extern const base::FilePath::CharType kShortcutsDatabaseName[]; |
| 93 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 94 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
| 94 extern const base::FilePath::CharType kSingletonLockFilename[]; | 95 extern const base::FilePath::CharType kSingletonLockFilename[]; |
| 95 extern const base::FilePath::CharType kSingletonSocketFilename[]; | 96 extern const base::FilePath::CharType kSingletonSocketFilename[]; |
| 96 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; | 97 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; |
| 97 extern const base::FilePath::CharType kSyncCredentialsFilename[]; | 98 extern const base::FilePath::CharType kSyncCredentialsFilename[]; |
| 98 extern const base::FilePath::CharType kThemePackFilename[]; | 99 extern const base::FilePath::CharType kThemePackFilename[]; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 167 |
| 167 // Used to identify the application to the system AV function in Windows. | 168 // Used to identify the application to the system AV function in Windows. |
| 168 extern const char kApplicationClientIDStringForAVScanning[]; | 169 extern const char kApplicationClientIDStringForAVScanning[]; |
| 169 | 170 |
| 170 // The largest reasonable length we'd assume for a meta tag attribute. | 171 // The largest reasonable length we'd assume for a meta tag attribute. |
| 171 extern const size_t kMaxMetaTagAttributeLength; | 172 extern const size_t kMaxMetaTagAttributeLength; |
| 172 | 173 |
| 173 } // namespace chrome | 174 } // namespace chrome |
| 174 | 175 |
| 175 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 176 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |