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" |
| 11 |
10 namespace chrome { | 12 namespace chrome { |
11 | 13 |
12 extern const wchar_t kBrowserProcessExecutableName[]; | 14 extern const wchar_t kBrowserProcessExecutableName[]; |
13 extern const wchar_t kBrowserAppName[]; | 15 extern const wchar_t kBrowserAppName[]; |
14 extern const wchar_t kMessageWindowClass[]; | 16 extern const wchar_t kMessageWindowClass[]; |
15 extern const wchar_t kExternalTabWindowClass[]; | 17 extern const wchar_t kExternalTabWindowClass[]; |
16 extern const wchar_t kCrashReportLog[]; | 18 extern const wchar_t kCrashReportLog[]; |
17 extern const wchar_t kTestingInterfaceDLL[]; | 19 extern const wchar_t kTestingInterfaceDLL[]; |
18 extern const wchar_t kNotSignedInProfile[]; | 20 extern const wchar_t kNotSignedInProfile[]; |
19 extern const wchar_t kNotSignedInID[]; | 21 extern const wchar_t kNotSignedInID[]; |
20 extern const char kStatsFilename[]; | 22 extern const char kStatsFilename[]; |
21 extern const wchar_t kBrowserResourcesDll[]; | 23 extern const wchar_t kBrowserResourcesDll[]; |
22 | 24 |
23 // filenames | 25 // filenames |
24 extern const wchar_t kArchivedHistoryFilename[]; | 26 extern const wchar_t kArchivedHistoryFilename[]; |
25 extern const wchar_t kCacheDirname[]; | 27 extern const wchar_t kCacheDirname[]; |
26 extern const wchar_t kChromePluginDataDirname[]; | 28 extern const wchar_t kChromePluginDataDirname[]; |
27 extern const wchar_t kCookieFilename[]; | 29 extern const wchar_t kCookieFilename[]; |
28 extern const wchar_t kHistoryFilename[]; | 30 extern const wchar_t kHistoryFilename[]; |
29 extern const wchar_t kLocalStateFilename[]; | 31 extern const wchar_t kLocalStateFilename[]; |
30 extern const wchar_t kPreferencesFilename[]; | 32 extern const wchar_t kPreferencesFilename[]; |
31 extern const wchar_t kSafeBrowsingFilename[]; | 33 extern const FilePath::CharType kSafeBrowsingFilename[]; |
32 extern const wchar_t kThumbnailsFilename[]; | 34 extern const wchar_t kThumbnailsFilename[]; |
33 extern const wchar_t kUserDataDirname[]; | 35 extern const wchar_t kUserDataDirname[]; |
34 extern const wchar_t kUserScriptsDirname[]; | 36 extern const wchar_t kUserScriptsDirname[]; |
35 extern const wchar_t kWebDataFilename[]; | 37 extern const wchar_t kWebDataFilename[]; |
36 extern const wchar_t kBookmarksFileName[]; | 38 extern const wchar_t kBookmarksFileName[]; |
37 extern const wchar_t kHistoryBookmarksFileName[]; | 39 extern const wchar_t kHistoryBookmarksFileName[]; |
38 extern const wchar_t kCustomDictionaryFileName[]; | 40 extern const wchar_t kCustomDictionaryFileName[]; |
39 | 41 |
40 extern const unsigned int kMaxRendererProcessCount; | 42 extern const unsigned int kMaxRendererProcessCount; |
41 extern const int kStatsMaxThreads; | 43 extern const int kStatsMaxThreads; |
42 extern const int kStatsMaxCounters; | 44 extern const int kStatsMaxCounters; |
43 | 45 |
44 extern const bool kRecordModeEnabled; | 46 extern const bool kRecordModeEnabled; |
45 } | 47 } |
46 | 48 |
47 #endif // CHROME_COMMON_CHROME_CONSTANTS_H__ | 49 #endif // CHROME_COMMON_CHROME_CONSTANTS_H__ |
48 | 50 |
OLD | NEW |