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 28 matching lines...) Expand all Loading... |
39 #if defined(OS_WIN) | 39 #if defined(OS_WIN) |
40 extern const base::FilePath::CharType kMetroDriverDll[]; | 40 extern const base::FilePath::CharType kMetroDriverDll[]; |
41 extern const wchar_t kStatusTrayWindowClass[]; | 41 extern const wchar_t kStatusTrayWindowClass[]; |
42 #endif // defined(OS_WIN) | 42 #endif // defined(OS_WIN) |
43 extern const wchar_t kCrashReportLog[]; | 43 extern const wchar_t kCrashReportLog[]; |
44 extern const wchar_t kTestingInterfaceDLL[]; | 44 extern const wchar_t kTestingInterfaceDLL[]; |
45 extern const char kInitialProfile[]; | 45 extern const char kInitialProfile[]; |
46 extern const char kMultiProfileDirPrefix[]; | 46 extern const char kMultiProfileDirPrefix[]; |
47 extern const base::FilePath::CharType kGuestProfileDir[]; | 47 extern const base::FilePath::CharType kGuestProfileDir[]; |
48 extern const wchar_t kBrowserResourcesDll[]; | 48 extern const wchar_t kBrowserResourcesDll[]; |
49 extern const base::FilePath::CharType kExtensionFileExtension[]; | |
50 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; | |
51 | 49 |
52 // filenames | 50 // filenames |
53 #if defined(OS_ANDROID) | 51 #if defined(OS_ANDROID) |
54 extern const base::FilePath::CharType kAndroidCacheFilename[]; | 52 extern const base::FilePath::CharType kAndroidCacheFilename[]; |
55 #endif | 53 #endif |
56 extern const base::FilePath::CharType kArchivedHistoryFilename[]; | 54 extern const base::FilePath::CharType kArchivedHistoryFilename[]; |
57 extern const base::FilePath::CharType kBookmarksFileName[]; | 55 extern const base::FilePath::CharType kBookmarksFileName[]; |
58 extern const base::FilePath::CharType kCacheDirname[]; | 56 extern const base::FilePath::CharType kCacheDirname[]; |
59 extern const base::FilePath::CharType kCookieFilename[]; | 57 extern const base::FilePath::CharType kCookieFilename[]; |
60 extern const base::FilePath::CharType kCRLSetFilename[]; | 58 extern const base::FilePath::CharType kCRLSetFilename[]; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 #if defined(OS_CHROMEOS) | 136 #if defined(OS_CHROMEOS) |
139 // Chrome OS profile directories have custom prefix. | 137 // Chrome OS profile directories have custom prefix. |
140 // Profile path format: [user_data_dir]/u-[$hash] | 138 // Profile path format: [user_data_dir]/u-[$hash] |
141 // Ex.: /home/chronos/u-0123456789 | 139 // Ex.: /home/chronos/u-0123456789 |
142 extern const char kProfileDirPrefix[]; | 140 extern const char kProfileDirPrefix[]; |
143 #endif | 141 #endif |
144 | 142 |
145 } // namespace chrome | 143 } // namespace chrome |
146 | 144 |
147 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 145 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |