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 30 matching lines...) Expand all Loading... |
41 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]; | 41 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]; |
42 #endif // OS_MACOSX | 42 #endif // OS_MACOSX |
43 #if defined(OS_WIN) | 43 #if defined(OS_WIN) |
44 extern const base::FilePath::CharType kMetroDriverDll[]; | 44 extern const base::FilePath::CharType kMetroDriverDll[]; |
45 extern const wchar_t kStatusTrayWindowClass[]; | 45 extern const wchar_t kStatusTrayWindowClass[]; |
46 #endif // defined(OS_WIN) | 46 #endif // defined(OS_WIN) |
47 extern const wchar_t kCrashReportLog[]; | 47 extern const wchar_t kCrashReportLog[]; |
48 extern const wchar_t kTestingInterfaceDLL[]; | 48 extern const wchar_t kTestingInterfaceDLL[]; |
49 extern const char kInitialProfile[]; | 49 extern const char kInitialProfile[]; |
50 extern const char kMultiProfileDirPrefix[]; | 50 extern const char kMultiProfileDirPrefix[]; |
51 extern const base::FilePath::CharType kGuestProfileDir[]; | 51 extern const char kGuestProfileDir[]; |
| 52 extern const char kUserManagerProfileDir[]; |
52 extern const wchar_t kBrowserResourcesDll[]; | 53 extern const wchar_t kBrowserResourcesDll[]; |
53 | 54 |
54 // filenames | 55 // filenames |
55 #if defined(OS_ANDROID) | 56 #if defined(OS_ANDROID) |
56 extern const base::FilePath::CharType kAndroidCacheFilename[]; | 57 extern const base::FilePath::CharType kAndroidCacheFilename[]; |
57 #endif | 58 #endif |
58 extern const base::FilePath::CharType kArchivedHistoryFilename[]; | 59 extern const base::FilePath::CharType kArchivedHistoryFilename[]; |
59 extern const base::FilePath::CharType kCacheDirname[]; | 60 extern const base::FilePath::CharType kCacheDirname[]; |
60 extern const base::FilePath::CharType kCookieFilename[]; | 61 extern const base::FilePath::CharType kCookieFilename[]; |
61 extern const base::FilePath::CharType kCRLSetFilename[]; | 62 extern const base::FilePath::CharType kCRLSetFilename[]; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 extern const char kApplicationClientIDStringForAVScanning[]; | 160 extern const char kApplicationClientIDStringForAVScanning[]; |
160 | 161 |
161 #if defined(OS_ANDROID) | 162 #if defined(OS_ANDROID) |
162 // The largest reasonable length we'd assume for a meta tag attribute. | 163 // The largest reasonable length we'd assume for a meta tag attribute. |
163 extern const size_t kMaxMetaTagAttributeLength; | 164 extern const size_t kMaxMetaTagAttributeLength; |
164 #endif | 165 #endif |
165 | 166 |
166 } // namespace chrome | 167 } // namespace chrome |
167 | 168 |
168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 169 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |