| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 | 12 |
| 13 namespace chrome { | 13 namespace chrome { |
| 14 | 14 |
| 15 extern const char kChromeVersion[]; | 15 extern const char kChromeVersion[]; |
| 16 | 16 |
| 17 extern const char kChromeVersionEnvVar[]; | 17 extern const char kChromeVersionEnvVar[]; |
| 18 | 18 |
| 19 extern const FilePath::CharType kBrowserProcessExecutableName[]; | 19 extern const FilePath::CharType kBrowserProcessExecutableName[]; |
| 20 extern const FilePath::CharType kHelperProcessExecutableName[]; | 20 extern const FilePath::CharType kHelperProcessExecutableName[]; |
| 21 extern const FilePath::CharType kBrowserProcessExecutablePath[]; | 21 extern const FilePath::CharType kBrowserProcessExecutablePath[]; |
| 22 extern const FilePath::CharType kHelperProcessExecutablePath[]; | 22 extern const FilePath::CharType kHelperProcessExecutablePath[]; |
| 23 extern const FilePath::CharType kBrowserProcessExecutableNameChromium[]; |
| 24 extern const FilePath::CharType kHelperProcessExecutableNameChromium[]; |
| 25 extern const FilePath::CharType kBrowserProcessExecutablePathChromium[]; |
| 26 extern const FilePath::CharType kHelperProcessExecutablePathChromium[]; |
| 23 #if defined(OS_MACOSX) | 27 #if defined(OS_MACOSX) |
| 24 extern const FilePath::CharType kFrameworkName[]; | 28 extern const FilePath::CharType kFrameworkName[]; |
| 25 #endif | 29 #endif |
| 26 extern const wchar_t kBrowserAppName[]; | 30 extern const wchar_t kBrowserAppName[]; |
| 27 #if defined(OS_WIN) | 31 #if defined(OS_WIN) |
| 28 extern const wchar_t kStatusTrayWindowClass[]; | 32 extern const wchar_t kStatusTrayWindowClass[]; |
| 29 #endif // defined(OS_WIN) | 33 #endif // defined(OS_WIN) |
| 30 extern const wchar_t kMessageWindowClass[]; | 34 extern const wchar_t kMessageWindowClass[]; |
| 31 extern const wchar_t kCrashReportLog[]; | 35 extern const wchar_t kCrashReportLog[]; |
| 32 extern const wchar_t kTestingInterfaceDLL[]; | 36 extern const wchar_t kTestingInterfaceDLL[]; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 // dismissed, display an option to suppress future message boxes from this | 95 // dismissed, display an option to suppress future message boxes from this |
| 92 // contents. | 96 // contents. |
| 93 extern const int kJavascriptMessageExpectedDelay; | 97 extern const int kJavascriptMessageExpectedDelay; |
| 94 | 98 |
| 95 // Are touch icons enabled? False by default. | 99 // Are touch icons enabled? False by default. |
| 96 extern const bool kEnableTouchIcon; | 100 extern const bool kEnableTouchIcon; |
| 97 | 101 |
| 98 } // namespace chrome | 102 } // namespace chrome |
| 99 | 103 |
| 100 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 104 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |