| 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 #if defined(OS_MACOSX) |
| 16 // Helpers (renderers, etc.) are different bundles on Mac OS X. |
| 17 extern const wchar_t kHelperProcessExecutableName[]; |
| 18 #endif // defined(OS_MACOSX) |
| 15 extern const wchar_t kBrowserProcessExecutablePath[]; | 19 extern const wchar_t kBrowserProcessExecutablePath[]; |
| 16 extern const wchar_t kBrowserAppName[]; | 20 extern const wchar_t kBrowserAppName[]; |
| 17 extern const wchar_t kMessageWindowClass[]; | 21 extern const wchar_t kMessageWindowClass[]; |
| 18 extern const wchar_t kCrashReportLog[]; | 22 extern const wchar_t kCrashReportLog[]; |
| 19 extern const wchar_t kTestingInterfaceDLL[]; | 23 extern const wchar_t kTestingInterfaceDLL[]; |
| 20 extern const wchar_t kNotSignedInProfile[]; | 24 extern const wchar_t kNotSignedInProfile[]; |
| 21 extern const wchar_t kNotSignedInID[]; | 25 extern const wchar_t kNotSignedInID[]; |
| 22 extern const char kStatsFilename[]; | 26 extern const char kStatsFilename[]; |
| 23 extern const wchar_t kBrowserResourcesDll[]; | 27 extern const wchar_t kBrowserResourcesDll[]; |
| 24 extern const FilePath::CharType kExtensionFileExtension[]; | 28 extern const FilePath::CharType kExtensionFileExtension[]; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 53 | 57 |
| 54 // The maximum number of characters of the document's title that we're willing | 58 // The maximum number of characters of the document's title that we're willing |
| 55 // to send to the browser process. | 59 // to send to the browser process. |
| 56 extern const size_t kMaxTitleChars; | 60 extern const size_t kMaxTitleChars; |
| 57 | 61 |
| 58 extern const bool kRecordModeEnabled; | 62 extern const bool kRecordModeEnabled; |
| 59 | 63 |
| 60 } // namespace chrome | 64 } // namespace chrome |
| 61 | 65 |
| 62 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 66 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |