| 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[]; |
| 15 |
| 14 extern const wchar_t kBrowserProcessExecutableName[]; | 16 extern const wchar_t kBrowserProcessExecutableName[]; |
| 15 extern const wchar_t kHelperProcessExecutableName[]; | 17 extern const wchar_t kHelperProcessExecutableName[]; |
| 16 extern const wchar_t kBrowserProcessExecutablePath[]; | 18 extern const wchar_t kBrowserProcessExecutablePath[]; |
| 17 extern const wchar_t kHelperProcessExecutablePath[]; | 19 extern const FilePath::CharType kHelperProcessExecutablePath[]; |
| 18 #if defined(OS_MACOSX) | 20 #if defined(OS_MACOSX) |
| 19 extern const FilePath::CharType kFrameworkName[]; | 21 extern const FilePath::CharType kFrameworkName[]; |
| 20 #endif | 22 #endif |
| 21 extern const wchar_t kBrowserAppName[]; | 23 extern const wchar_t kBrowserAppName[]; |
| 22 extern const wchar_t kMessageWindowClass[]; | 24 extern const wchar_t kMessageWindowClass[]; |
| 23 extern const wchar_t kCrashReportLog[]; | 25 extern const wchar_t kCrashReportLog[]; |
| 24 extern const wchar_t kTestingInterfaceDLL[]; | 26 extern const wchar_t kTestingInterfaceDLL[]; |
| 25 extern const wchar_t kNotSignedInProfile[]; | 27 extern const wchar_t kNotSignedInProfile[]; |
| 26 extern const wchar_t kNotSignedInID[]; | 28 extern const wchar_t kNotSignedInID[]; |
| 27 extern const char kStatsFilename[]; | 29 extern const char kStatsFilename[]; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 63 |
| 62 // The maximum number of characters of the document's title that we're willing | 64 // The maximum number of characters of the document's title that we're willing |
| 63 // to send to the browser process. | 65 // to send to the browser process. |
| 64 extern const size_t kMaxTitleChars; | 66 extern const size_t kMaxTitleChars; |
| 65 | 67 |
| 66 extern const bool kRecordModeEnabled; | 68 extern const bool kRecordModeEnabled; |
| 67 | 69 |
| 68 } // namespace chrome | 70 } // namespace chrome |
| 69 | 71 |
| 70 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 72 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |