OLD | NEW |
---|---|
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/file_path.h" | 10 #include "base/file_path.h" |
11 | 11 |
12 namespace chrome { | 12 namespace chrome { |
13 | 13 |
14 extern const char kChromeVersion[]; | 14 extern const char kChromeVersion[]; |
15 | 15 |
16 extern const wchar_t kBrowserProcessExecutableName[]; | 16 extern const wchar_t kBrowserProcessExecutableName[]; |
17 extern const wchar_t kHelperProcessExecutableName[]; | 17 extern const wchar_t kHelperProcessExecutableName[]; |
18 extern const wchar_t kBrowserProcessExecutablePath[]; | 18 extern const wchar_t kBrowserProcessExecutablePath[]; |
19 extern const FilePath::CharType kHelperProcessExecutablePath[]; | 19 extern const FilePath::CharType kHelperProcessExecutablePath[]; |
20 #if defined(OS_MACOSX) | 20 #if defined(OS_MACOSX) |
21 extern const FilePath::CharType kFrameworkName[]; | 21 extern const FilePath::CharType kFrameworkName[]; |
22 #endif | 22 #endif |
23 extern const wchar_t kBrowserAppName[]; | 23 extern const wchar_t kBrowserAppName[]; |
24 #if defined(OS_WIN) | |
25 extern const wchar_t kBrowserAppId[]; | |
Hironori Bono
2009/11/19 04:35:47
nit: kBrowserAppId -> kBrowserAppID (see kNotSigne
xiyuan
2009/11/19 07:30:18
Done.
| |
26 #endif // defined(OS_WIN) | |
24 extern const wchar_t kMessageWindowClass[]; | 27 extern const wchar_t kMessageWindowClass[]; |
25 extern const wchar_t kCrashReportLog[]; | 28 extern const wchar_t kCrashReportLog[]; |
26 extern const wchar_t kTestingInterfaceDLL[]; | 29 extern const wchar_t kTestingInterfaceDLL[]; |
27 extern const wchar_t kNotSignedInProfile[]; | 30 extern const wchar_t kNotSignedInProfile[]; |
28 extern const wchar_t kNotSignedInID[]; | 31 extern const wchar_t kNotSignedInID[]; |
29 extern const char kStatsFilename[]; | 32 extern const char kStatsFilename[]; |
30 extern const wchar_t kBrowserResourcesDll[]; | 33 extern const wchar_t kBrowserResourcesDll[]; |
31 extern const FilePath::CharType kExtensionFileExtension[]; | 34 extern const FilePath::CharType kExtensionFileExtension[]; |
32 | 35 |
33 // filenames | 36 // filenames |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 | 68 |
66 // The maximum number of characters of the document's title that we're willing | 69 // The maximum number of characters of the document's title that we're willing |
67 // to send to the browser process. | 70 // to send to the browser process. |
68 extern const size_t kMaxTitleChars; | 71 extern const size_t kMaxTitleChars; |
69 | 72 |
70 extern const bool kRecordModeEnabled; | 73 extern const bool kRecordModeEnabled; |
71 | 74 |
72 } // namespace chrome | 75 } // namespace chrome |
73 | 76 |
74 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 77 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |