| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #endif // OS_MACOSX | 52 #endif // OS_MACOSX |
| 53 #if defined(OS_WIN) | 53 #if defined(OS_WIN) |
| 54 extern const base::FilePath::CharType kMetroDriverDll[]; | 54 extern const base::FilePath::CharType kMetroDriverDll[]; |
| 55 extern const wchar_t kStatusTrayWindowClass[]; | 55 extern const wchar_t kStatusTrayWindowClass[]; |
| 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 wchar_t kBrowserResourcesDll[]; | 63 extern const wchar_t kBrowserResourcesDll[]; |
| 63 | 64 |
| 64 // filenames | 65 // filenames |
| 65 extern const base::FilePath::CharType kCacheDirname[]; | 66 extern const base::FilePath::CharType kCacheDirname[]; |
| 66 extern const base::FilePath::CharType kChannelIDFilename[]; | 67 extern const base::FilePath::CharType kChannelIDFilename[]; |
| 67 extern const base::FilePath::CharType kCookieFilename[]; | 68 extern const base::FilePath::CharType kCookieFilename[]; |
| 68 extern const base::FilePath::CharType kCRLSetFilename[]; | 69 extern const base::FilePath::CharType kCRLSetFilename[]; |
| 69 extern const base::FilePath::CharType kCustomDictionaryFileName[]; | 70 extern const base::FilePath::CharType kCustomDictionaryFileName[]; |
| 70 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; | 71 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; |
| 71 extern const base::FilePath::CharType kExtensionsCookieFilename[]; | 72 extern const base::FilePath::CharType kExtensionsCookieFilename[]; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 155 |
| 155 // Used to identify the application to the system AV function in Windows. | 156 // Used to identify the application to the system AV function in Windows. |
| 156 extern const char kApplicationClientIDStringForAVScanning[]; | 157 extern const char kApplicationClientIDStringForAVScanning[]; |
| 157 | 158 |
| 158 // The largest reasonable length we'd assume for a meta tag attribute. | 159 // The largest reasonable length we'd assume for a meta tag attribute. |
| 159 extern const size_t kMaxMetaTagAttributeLength; | 160 extern const size_t kMaxMetaTagAttributeLength; |
| 160 | 161 |
| 161 } // namespace chrome | 162 } // namespace chrome |
| 162 | 163 |
| 163 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 164 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |