| 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 28 matching lines...) Expand all Loading... |
| 39 extern const char kInitialProfile[]; | 39 extern const char kInitialProfile[]; |
| 40 extern const char kMultiProfileDirPrefix[]; | 40 extern const char kMultiProfileDirPrefix[]; |
| 41 extern const base::FilePath::CharType kGuestProfileDir[]; | 41 extern const base::FilePath::CharType kGuestProfileDir[]; |
| 42 extern const base::FilePath::CharType kSystemProfileDir[]; | 42 extern const base::FilePath::CharType kSystemProfileDir[]; |
| 43 | 43 |
| 44 // filenames | 44 // filenames |
| 45 extern const base::FilePath::CharType kCacheDirname[]; | 45 extern const base::FilePath::CharType kCacheDirname[]; |
| 46 extern const base::FilePath::CharType kChannelIDFilename[]; | 46 extern const base::FilePath::CharType kChannelIDFilename[]; |
| 47 extern const base::FilePath::CharType kCookieFilename[]; | 47 extern const base::FilePath::CharType kCookieFilename[]; |
| 48 extern const base::FilePath::CharType kCRLSetFilename[]; | 48 extern const base::FilePath::CharType kCRLSetFilename[]; |
| 49 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 49 //extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
| 50 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 50 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
| 51 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 51 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
| 52 extern const base::FilePath::CharType kFirstRunSentinel[]; | 52 extern const base::FilePath::CharType kFirstRunSentinel[]; |
| 53 extern const base::FilePath::CharType kGCMStoreDirname[]; | 53 extern const base::FilePath::CharType kGCMStoreDirname[]; |
| 54 extern const base::FilePath::CharType kLocalStateFilename[]; | 54 extern const base::FilePath::CharType kLocalStateFilename[]; |
| 55 extern const base::FilePath::CharType kLocalStorePoolName[]; | 55 extern const base::FilePath::CharType kLocalStorePoolName[]; |
| 56 extern const base::FilePath::CharType kMediaCacheDirname[]; | 56 extern const base::FilePath::CharType kMediaCacheDirname[]; |
| 57 extern const base::FilePath::CharType kNetworkPersistentStateFilename[]; | 57 extern const base::FilePath::CharType kNetworkPersistentStateFilename[]; |
| 58 extern const base::FilePath::CharType kOfflinePageArchivesDirname[]; | 58 extern const base::FilePath::CharType kOfflinePageArchivesDirname[]; |
| 59 extern const base::FilePath::CharType kOfflinePageMetadataDirname[]; | 59 extern const base::FilePath::CharType kOfflinePageMetadataDirname[]; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 // Used to identify the application to the system AV function in Windows. | 121 // Used to identify the application to the system AV function in Windows. |
| 122 extern const char kApplicationClientIDStringForAVScanning[]; | 122 extern const char kApplicationClientIDStringForAVScanning[]; |
| 123 | 123 |
| 124 // The largest reasonable length we'd assume for a meta tag attribute. | 124 // The largest reasonable length we'd assume for a meta tag attribute. |
| 125 extern const size_t kMaxMetaTagAttributeLength; | 125 extern const size_t kMaxMetaTagAttributeLength; |
| 126 | 126 |
| 127 } // namespace chrome | 127 } // namespace chrome |
| 128 | 128 |
| 129 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 129 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |