| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 extern const base::FilePath::CharType kHistoryFilename[]; | 69 extern const base::FilePath::CharType kHistoryFilename[]; |
| 70 extern const base::FilePath::CharType kJumpListIconDirname[]; | 70 extern const base::FilePath::CharType kJumpListIconDirname[]; |
| 71 extern const base::FilePath::CharType kLocalStateFilename[]; | 71 extern const base::FilePath::CharType kLocalStateFilename[]; |
| 72 extern const base::FilePath::CharType kLocalStorePoolName[]; | 72 extern const base::FilePath::CharType kLocalStorePoolName[]; |
| 73 extern const base::FilePath::CharType kLoginDataFileName[]; | 73 extern const base::FilePath::CharType kLoginDataFileName[]; |
| 74 extern const base::FilePath::CharType kMediaCacheDirname[]; | 74 extern const base::FilePath::CharType kMediaCacheDirname[]; |
| 75 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; | 75 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; |
| 76 extern const base::FilePath::CharType kPreferencesFilename[]; | 76 extern const base::FilePath::CharType kPreferencesFilename[]; |
| 77 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; | 77 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; |
| 78 extern const base::FilePath::CharType kReadmeFilename[]; | 78 extern const base::FilePath::CharType kReadmeFilename[]; |
| 79 extern const base::FilePath::CharType kResetPromptMementoFilename[]; | |
| 80 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; | 79 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; |
| 81 extern const base::FilePath::CharType kSecurePreferencesFilename[]; | 80 extern const base::FilePath::CharType kSecurePreferencesFilename[]; |
| 82 extern const base::FilePath::CharType kServiceStateFileName[]; | 81 extern const base::FilePath::CharType kServiceStateFileName[]; |
| 83 extern const base::FilePath::CharType kShortcutsDatabaseName[]; | 82 extern const base::FilePath::CharType kShortcutsDatabaseName[]; |
| 84 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 83 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
| 85 extern const base::FilePath::CharType kSingletonLockFilename[]; | 84 extern const base::FilePath::CharType kSingletonLockFilename[]; |
| 86 extern const base::FilePath::CharType kSingletonSocketFilename[]; | 85 extern const base::FilePath::CharType kSingletonSocketFilename[]; |
| 87 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; | 86 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; |
| 88 extern const base::FilePath::CharType kSyncCredentialsFilename[]; | 87 extern const base::FilePath::CharType kSyncCredentialsFilename[]; |
| 89 extern const base::FilePath::CharType kThemePackFilename[]; | 88 extern const base::FilePath::CharType kThemePackFilename[]; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 extern const char kApplicationClientIDStringForAVScanning[]; | 158 extern const char kApplicationClientIDStringForAVScanning[]; |
| 160 | 159 |
| 161 #if defined(OS_ANDROID) | 160 #if defined(OS_ANDROID) |
| 162 // The largest reasonable length we'd assume for a meta tag attribute. | 161 // The largest reasonable length we'd assume for a meta tag attribute. |
| 163 extern const size_t kMaxMetaTagAttributeLength; | 162 extern const size_t kMaxMetaTagAttributeLength; |
| 164 #endif | 163 #endif |
| 165 | 164 |
| 166 } // namespace chrome | 165 } // namespace chrome |
| 167 | 166 |
| 168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 167 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |