| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 // Defines all install related constants that need to be used by Chrome as | 5 // Defines all install related constants that need to be used by Chrome as |
| 6 // well as Chrome Installer. | 6 // well as Chrome Installer. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
| 9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 EULA_ACCEPTED_OPT_IN, // EULA accepted wtih the crash optin selected. | 41 EULA_ACCEPTED_OPT_IN, // EULA accepted wtih the crash optin selected. |
| 42 INSTALL_DIR_IN_USE // Installation directory is in use by another process | 42 INSTALL_DIR_IN_USE // Installation directory is in use by another process |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 namespace switches { | 45 namespace switches { |
| 46 extern const wchar_t kCreateAllShortcuts[]; | 46 extern const wchar_t kCreateAllShortcuts[]; |
| 47 extern const wchar_t kDeleteProfile[]; | 47 extern const wchar_t kDeleteProfile[]; |
| 48 extern const wchar_t kDisableLogging[]; | 48 extern const wchar_t kDisableLogging[]; |
| 49 extern const wchar_t kDoNotCreateShortcuts[]; | 49 extern const wchar_t kDoNotCreateShortcuts[]; |
| 50 extern const wchar_t kDoNotLaunchChrome[]; | 50 extern const wchar_t kDoNotLaunchChrome[]; |
| 51 extern const wchar_t kDoNotRegisterForUpdateLaunch[]; |
| 51 extern const wchar_t kDoNotRemoveSharedItems[]; | 52 extern const wchar_t kDoNotRemoveSharedItems[]; |
| 52 extern const wchar_t kEnableLogging[]; | 53 extern const wchar_t kEnableLogging[]; |
| 53 extern const wchar_t kForceUninstall[]; | 54 extern const wchar_t kForceUninstall[]; |
| 54 extern const wchar_t kInstallArchive[]; | 55 extern const wchar_t kInstallArchive[]; |
| 55 extern const wchar_t kInstallerData[]; | 56 extern const wchar_t kInstallerData[]; |
| 56 extern const wchar_t kLogFile[]; | 57 extern const wchar_t kLogFile[]; |
| 57 extern const wchar_t kMakeChromeDefault[]; | 58 extern const wchar_t kMakeChromeDefault[]; |
| 58 extern const wchar_t kNewSetupExe[]; | 59 extern const wchar_t kNewSetupExe[]; |
| 59 extern const wchar_t kRegisterChromeBrowser[]; | 60 extern const wchar_t kRegisterChromeBrowser[]; |
| 60 extern const wchar_t kRegisterChromeBrowserSuffix[]; | 61 extern const wchar_t kRegisterChromeBrowserSuffix[]; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 80 extern const wchar_t kInstallerDir[]; | 81 extern const wchar_t kInstallerDir[]; |
| 81 | 82 |
| 82 extern const wchar_t kUninstallStringField[]; | 83 extern const wchar_t kUninstallStringField[]; |
| 83 extern const wchar_t kUninstallDisplayNameField[]; | 84 extern const wchar_t kUninstallDisplayNameField[]; |
| 84 extern const wchar_t kUninstallMetricsName[]; | 85 extern const wchar_t kUninstallMetricsName[]; |
| 85 extern const wchar_t kUninstallInstallationDate[]; | 86 extern const wchar_t kUninstallInstallationDate[]; |
| 86 | 87 |
| 87 } // namespace installer_util | 88 } // namespace installer_util |
| 88 | 89 |
| 89 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 90 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
| OLD | NEW |