| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 extern const base::FilePath::CharType kCookieFilename[]; | 48 extern const base::FilePath::CharType kCookieFilename[]; |
| 49 extern const base::FilePath::CharType kCRLSetFilename[]; | 49 extern const base::FilePath::CharType kCRLSetFilename[]; |
| 50 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 50 extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
| 51 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 51 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
| 52 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 52 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
| 53 extern const base::FilePath::CharType kFirstRunSentinel[]; | 53 extern const base::FilePath::CharType kFirstRunSentinel[]; |
| 54 extern const base::FilePath::CharType kGCMStoreDirname[]; | 54 extern const base::FilePath::CharType kGCMStoreDirname[]; |
| 55 extern const base::FilePath::CharType kLocalStateFilename[]; | 55 extern const base::FilePath::CharType kLocalStateFilename[]; |
| 56 extern const base::FilePath::CharType kLocalStorePoolName[]; | 56 extern const base::FilePath::CharType kLocalStorePoolName[]; |
| 57 extern const base::FilePath::CharType kMediaCacheDirname[]; | 57 extern const base::FilePath::CharType kMediaCacheDirname[]; |
| 58 extern const base::FilePath::CharType kNetworkPersistentStateFilename[]; | |
| 59 extern const base::FilePath::CharType kOfflinePageArchivesDirname[]; | 58 extern const base::FilePath::CharType kOfflinePageArchivesDirname[]; |
| 60 extern const base::FilePath::CharType kOfflinePageMetadataDirname[]; | 59 extern const base::FilePath::CharType kOfflinePageMetadataDirname[]; |
| 61 extern const base::FilePath::CharType kOfflinePageRequestQueueDirname[]; | 60 extern const base::FilePath::CharType kOfflinePageRequestQueueDirname[]; |
| 62 extern const base::FilePath::CharType kPreferencesFilename[]; | 61 extern const base::FilePath::CharType kPreferencesFilename[]; |
| 63 extern const base::FilePath::CharType kPreviewsOptOutDBFilename[]; | 62 extern const base::FilePath::CharType kPreviewsOptOutDBFilename[]; |
| 64 extern const base::FilePath::CharType kReadmeFilename[]; | 63 extern const base::FilePath::CharType kReadmeFilename[]; |
| 65 extern const base::FilePath::CharType kSecurePreferencesFilename[]; | 64 extern const base::FilePath::CharType kSecurePreferencesFilename[]; |
| 66 extern const base::FilePath::CharType kServiceStateFileName[]; | 65 extern const base::FilePath::CharType kServiceStateFileName[]; |
| 67 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 66 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
| 68 extern const base::FilePath::CharType kSingletonLockFilename[]; | 67 extern const base::FilePath::CharType kSingletonLockFilename[]; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 111 |
| 113 // Used to identify the application to the system AV function in Windows. | 112 // Used to identify the application to the system AV function in Windows. |
| 114 extern const char kApplicationClientIDStringForAVScanning[]; | 113 extern const char kApplicationClientIDStringForAVScanning[]; |
| 115 | 114 |
| 116 // The largest reasonable length we'd assume for a meta tag attribute. | 115 // The largest reasonable length we'd assume for a meta tag attribute. |
| 117 extern const size_t kMaxMetaTagAttributeLength; | 116 extern const size_t kMaxMetaTagAttributeLength; |
| 118 | 117 |
| 119 } // namespace chrome | 118 } // namespace chrome |
| 120 | 119 |
| 121 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 120 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |