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 wchar_t kBrowserProcessExecutableName[]; | 14 extern const wchar_t kBrowserProcessExecutableName[]; |
15 extern const wchar_t kBrowserProcessExecutablePath[]; | 15 extern const wchar_t kBrowserProcessExecutablePath[]; |
16 extern const wchar_t kBrowserAppName[]; | 16 extern const wchar_t kBrowserAppName[]; |
17 extern const wchar_t kMessageWindowClass[]; | 17 extern const wchar_t kMessageWindowClass[]; |
18 extern const wchar_t kExternalTabWindowClass[]; | |
19 extern const wchar_t kCrashReportLog[]; | 18 extern const wchar_t kCrashReportLog[]; |
20 extern const wchar_t kTestingInterfaceDLL[]; | 19 extern const wchar_t kTestingInterfaceDLL[]; |
21 extern const wchar_t kNotSignedInProfile[]; | 20 extern const wchar_t kNotSignedInProfile[]; |
22 extern const wchar_t kNotSignedInID[]; | 21 extern const wchar_t kNotSignedInID[]; |
23 extern const char kStatsFilename[]; | 22 extern const char kStatsFilename[]; |
24 extern const wchar_t kBrowserResourcesDll[]; | 23 extern const wchar_t kBrowserResourcesDll[]; |
25 extern const FilePath::CharType kExtensionFileExtension[]; | 24 extern const FilePath::CharType kExtensionFileExtension[]; |
26 | 25 |
27 // filenames | 26 // filenames |
28 extern const FilePath::CharType kArchivedHistoryFilename[]; | 27 extern const FilePath::CharType kArchivedHistoryFilename[]; |
(...skipping 18 matching lines...) Expand all Loading... |
47 | 46 |
48 extern const unsigned int kMaxRendererProcessCount; | 47 extern const unsigned int kMaxRendererProcessCount; |
49 extern const int kStatsMaxThreads; | 48 extern const int kStatsMaxThreads; |
50 extern const int kStatsMaxCounters; | 49 extern const int kStatsMaxCounters; |
51 | 50 |
52 extern const bool kRecordModeEnabled; | 51 extern const bool kRecordModeEnabled; |
53 | 52 |
54 } // namespace chrome | 53 } // namespace chrome |
55 | 54 |
56 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 55 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |