| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #endif // defined(OS_WIN) | 56 #endif // defined(OS_WIN) |
| 57 extern const wchar_t kCrashReportLog[]; | 57 extern const wchar_t kCrashReportLog[]; |
| 58 extern const wchar_t kTestingInterfaceDLL[]; | 58 extern const wchar_t kTestingInterfaceDLL[]; |
| 59 extern const char kInitialProfile[]; | 59 extern const char kInitialProfile[]; |
| 60 extern const char kMultiProfileDirPrefix[]; | 60 extern const char kMultiProfileDirPrefix[]; |
| 61 extern const base::FilePath::CharType kGuestProfileDir[]; | 61 extern const base::FilePath::CharType kGuestProfileDir[]; |
| 62 extern const base::FilePath::CharType kSystemProfileDir[]; | 62 extern const base::FilePath::CharType kSystemProfileDir[]; |
| 63 extern const wchar_t kBrowserResourcesDll[]; | 63 extern const wchar_t kBrowserResourcesDll[]; |
| 64 | 64 |
| 65 // filenames | 65 // filenames |
| 66 extern const base::FilePath::CharType kAffiliationDatabaseFileName[]; |
| 66 extern const base::FilePath::CharType kCacheDirname[]; | 67 extern const base::FilePath::CharType kCacheDirname[]; |
| 67 extern const base::FilePath::CharType kChannelIDFilename[]; | 68 extern const base::FilePath::CharType kChannelIDFilename[]; |
| 68 extern const base::FilePath::CharType kCookieFilename[]; | 69 extern const base::FilePath::CharType kCookieFilename[]; |
| 69 extern const base::FilePath::CharType kCRLSetFilename[]; | 70 extern const base::FilePath::CharType kCRLSetFilename[]; |
| 70 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 71 extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
| 71 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 72 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
| 72 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 73 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
| 73 extern const base::FilePath::CharType kFirstRunSentinel[]; | 74 extern const base::FilePath::CharType kFirstRunSentinel[]; |
| 74 extern const base::FilePath::CharType kGCMStoreDirname[]; | 75 extern const base::FilePath::CharType kGCMStoreDirname[]; |
| 75 extern const base::FilePath::CharType kJumpListIconDirname[]; | 76 extern const base::FilePath::CharType kJumpListIconDirname[]; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 157 |
| 157 // Used to identify the application to the system AV function in Windows. | 158 // Used to identify the application to the system AV function in Windows. |
| 158 extern const char kApplicationClientIDStringForAVScanning[]; | 159 extern const char kApplicationClientIDStringForAVScanning[]; |
| 159 | 160 |
| 160 // 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. |
| 161 extern const size_t kMaxMetaTagAttributeLength; | 162 extern const size_t kMaxMetaTagAttributeLength; |
| 162 | 163 |
| 163 } // namespace chrome | 164 } // namespace chrome |
| 164 | 165 |
| 165 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 166 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |