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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 70 extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
71 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 71 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
72 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 72 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
73 extern const base::FilePath::CharType kFirstRunSentinel[]; | 73 extern const base::FilePath::CharType kFirstRunSentinel[]; |
74 extern const base::FilePath::CharType kGCMStoreDirname[]; | 74 extern const base::FilePath::CharType kGCMStoreDirname[]; |
75 extern const base::FilePath::CharType kJumpListIconDirname[]; | 75 extern const base::FilePath::CharType kJumpListIconDirname[]; |
76 extern const base::FilePath::CharType kLocalStateFilename[]; | 76 extern const base::FilePath::CharType kLocalStateFilename[]; |
77 extern const base::FilePath::CharType kLocalStorePoolName[]; | 77 extern const base::FilePath::CharType kLocalStorePoolName[]; |
78 extern const base::FilePath::CharType kLoginDataFileName[]; | 78 extern const base::FilePath::CharType kLoginDataFileName[]; |
79 extern const base::FilePath::CharType kMediaCacheDirname[]; | 79 extern const base::FilePath::CharType kMediaCacheDirname[]; |
| 80 extern const base::FilePath::CharType kNetworkPersistentStateFilename[]; |
80 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; | 81 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; |
81 extern const base::FilePath::CharType kPreferencesFilename[]; | 82 extern const base::FilePath::CharType kPreferencesFilename[]; |
82 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; | 83 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; |
83 extern const base::FilePath::CharType kReadmeFilename[]; | 84 extern const base::FilePath::CharType kReadmeFilename[]; |
84 extern const base::FilePath::CharType kResetPromptMementoFilename[]; | 85 extern const base::FilePath::CharType kResetPromptMementoFilename[]; |
85 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; | 86 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; |
86 extern const base::FilePath::CharType kSecurePreferencesFilename[]; | 87 extern const base::FilePath::CharType kSecurePreferencesFilename[]; |
87 extern const base::FilePath::CharType kServiceStateFileName[]; | 88 extern const base::FilePath::CharType kServiceStateFileName[]; |
88 extern const base::FilePath::CharType kShortcutsDatabaseName[]; | 89 extern const base::FilePath::CharType kShortcutsDatabaseName[]; |
89 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 90 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 156 |
156 // Used to identify the application to the system AV function in Windows. | 157 // Used to identify the application to the system AV function in Windows. |
157 extern const char kApplicationClientIDStringForAVScanning[]; | 158 extern const char kApplicationClientIDStringForAVScanning[]; |
158 | 159 |
159 // The largest reasonable length we'd assume for a meta tag attribute. | 160 // The largest reasonable length we'd assume for a meta tag attribute. |
160 extern const size_t kMaxMetaTagAttributeLength; | 161 extern const size_t kMaxMetaTagAttributeLength; |
161 | 162 |
162 } // namespace chrome | 163 } // namespace chrome |
163 | 164 |
164 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 165 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |