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 22 matching lines...) Expand all Loading... |
33 // named Chromium Helper.app, helper executables could show up at any of | 33 // named Chromium Helper.app, helper executables could show up at any of |
34 // Chromium Helper.app/Contents/MacOS/Chromium Helper, | 34 // Chromium Helper.app/Contents/MacOS/Chromium Helper, |
35 // Chromium Helper EN.app/Contents/MacOS/Chromium Helper EN, and | 35 // Chromium Helper EN.app/Contents/MacOS/Chromium Helper EN, and |
36 // Chromium Helper MF.app/Contents/MacOS/Chromium Helper MF. | 36 // Chromium Helper MF.app/Contents/MacOS/Chromium Helper MF. |
37 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]; | 37 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]; |
38 #endif // OS_MACOSX | 38 #endif // OS_MACOSX |
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 kMessageWindowClass[]; | |
44 extern const wchar_t kCrashReportLog[]; | 43 extern const wchar_t kCrashReportLog[]; |
45 extern const wchar_t kTestingInterfaceDLL[]; | 44 extern const wchar_t kTestingInterfaceDLL[]; |
46 extern const char kInitialProfile[]; | 45 extern const char kInitialProfile[]; |
47 extern const char kMultiProfileDirPrefix[]; | 46 extern const char kMultiProfileDirPrefix[]; |
48 extern const wchar_t kBrowserResourcesDll[]; | 47 extern const wchar_t kBrowserResourcesDll[]; |
49 extern const base::FilePath::CharType kExtensionFileExtension[]; | 48 extern const base::FilePath::CharType kExtensionFileExtension[]; |
50 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; | 49 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; |
51 | 50 |
52 // filenames | 51 // filenames |
53 #if defined(OS_ANDROID) | 52 #if defined(OS_ANDROID) |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 #if defined(OS_CHROMEOS) | 137 #if defined(OS_CHROMEOS) |
139 // Chrome OS profile directories have custom prefix. | 138 // Chrome OS profile directories have custom prefix. |
140 // Profile path format: [user_data_dir]/u-[$hash] | 139 // Profile path format: [user_data_dir]/u-[$hash] |
141 // Ex.: /home/chronos/u-0123456789 | 140 // Ex.: /home/chronos/u-0123456789 |
142 extern const char kProfileDirPrefix[]; | 141 extern const char kProfileDirPrefix[]; |
143 #endif | 142 #endif |
144 | 143 |
145 } // namespace chrome | 144 } // namespace chrome |
146 | 145 |
147 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 146 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |