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