| 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 28 matching lines...) Expand all Loading... |
| 39 EULA_REJECTED, // EULA dialog was not accepted by user. | 39 EULA_REJECTED, // EULA dialog was not accepted by user. |
| 40 EULA_ACCEPTED, // EULA dialog was accepted by user. | 40 EULA_ACCEPTED, // EULA dialog was accepted by user. |
| 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 kDoNotLaunchChrome[]; | 50 extern const wchar_t kDoNotLaunchChrome[]; |
| 50 extern const wchar_t kDoNotRemoveSharedItems[]; | 51 extern const wchar_t kDoNotRemoveSharedItems[]; |
| 51 extern const wchar_t kEnableLogging[]; | 52 extern const wchar_t kEnableLogging[]; |
| 52 extern const wchar_t kForceUninstall[]; | 53 extern const wchar_t kForceUninstall[]; |
| 53 extern const wchar_t kInstallArchive[]; | 54 extern const wchar_t kInstallArchive[]; |
| 54 extern const wchar_t kInstallerData[]; | 55 extern const wchar_t kInstallerData[]; |
| 55 extern const wchar_t kLogFile[]; | 56 extern const wchar_t kLogFile[]; |
| 56 extern const wchar_t kMakeChromeDefault[]; | 57 extern const wchar_t kMakeChromeDefault[]; |
| 57 extern const wchar_t kNewSetupExe[]; | 58 extern const wchar_t kNewSetupExe[]; |
| 58 extern const wchar_t kRegisterChromeBrowser[]; | 59 extern const wchar_t kRegisterChromeBrowser[]; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 79 extern const wchar_t kInstallerDir[]; | 80 extern const wchar_t kInstallerDir[]; |
| 80 | 81 |
| 81 extern const wchar_t kUninstallStringField[]; | 82 extern const wchar_t kUninstallStringField[]; |
| 82 extern const wchar_t kUninstallDisplayNameField[]; | 83 extern const wchar_t kUninstallDisplayNameField[]; |
| 83 extern const wchar_t kUninstallMetricsName[]; | 84 extern const wchar_t kUninstallMetricsName[]; |
| 84 extern const wchar_t kUninstallInstallationDate[]; | 85 extern const wchar_t kUninstallInstallationDate[]; |
| 85 | 86 |
| 86 } // namespace installer_util | 87 } // namespace installer_util |
| 87 | 88 |
| 88 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 89 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
| OLD | NEW |