| 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 // 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 10 matching lines...) Expand all Loading... |
| 21 INSTALL_FAILED, // Install/update failed | 21 INSTALL_FAILED, // Install/update failed |
| 22 OS_NOT_SUPPORTED, // Current OS not supported | 22 OS_NOT_SUPPORTED, // Current OS not supported |
| 23 OS_ERROR, // OS API call failed | 23 OS_ERROR, // OS API call failed |
| 24 TEMP_DIR_FAILED, // Unable to get Temp directory | 24 TEMP_DIR_FAILED, // Unable to get Temp directory |
| 25 UNCOMPRESSION_FAILED, // Failed to uncompress Chrome archive | 25 UNCOMPRESSION_FAILED, // Failed to uncompress Chrome archive |
| 26 INVALID_ARCHIVE, // Something wrong with the installer archive | 26 INVALID_ARCHIVE, // Something wrong with the installer archive |
| 27 INSUFFICIENT_RIGHTS, // User trying system level install is not Admin | 27 INSUFFICIENT_RIGHTS, // User trying system level install is not Admin |
| 28 CHROME_NOT_INSTALLED, // Chrome not installed (returned in case of uninstall) | 28 CHROME_NOT_INSTALLED, // Chrome not installed (returned in case of uninstall) |
| 29 CHROME_RUNNING, // Chrome currently running (when trying to uninstall) | 29 CHROME_RUNNING, // Chrome currently running (when trying to uninstall) |
| 30 UNINSTALL_CONFIRMED, // User has confirmed Chrome uninstall | 30 UNINSTALL_CONFIRMED, // User has confirmed Chrome uninstall |
| 31 UNINSTALL_DELETE_PROFILE, // User confirmed uninstall and profile deletion |
| 31 UNINSTALL_SUCCESSFUL, // Chrome successfully uninstalled | 32 UNINSTALL_SUCCESSFUL, // Chrome successfully uninstalled |
| 32 UNINSTALL_FAILED, // Chrome uninstallation failed | 33 UNINSTALL_FAILED, // Chrome uninstallation failed |
| 33 UNINSTALL_CANCELLED, // User cancelled Chrome uninstallation | 34 UNINSTALL_CANCELLED, // User cancelled Chrome uninstallation |
| 34 UNKNOWN_STATUS, // Unknown status (this should never happen) | 35 UNKNOWN_STATUS, // Unknown status (this should never happen) |
| 35 RENAME_SUCCESSFUL, // Rename of new_chrome.exe to chrome.exe worked | 36 RENAME_SUCCESSFUL, // Rename of new_chrome.exe to chrome.exe worked |
| 36 RENAME_FAILED, // Rename of new_chrome.exe failed | 37 RENAME_FAILED, // Rename of new_chrome.exe failed |
| 37 EULA_REJECTED, // EULA dialog was not accepted by user. | 38 EULA_REJECTED, // EULA dialog was not accepted by user. |
| 38 EULA_ACCEPTED, // EULA dialog was accepted by user. | 39 EULA_ACCEPTED, // EULA dialog was accepted by user. |
| 39 EULA_ACCEPTED_OPT_IN, // EULA accepted wtih the crash optin selected. | 40 EULA_ACCEPTED_OPT_IN, // EULA accepted wtih the crash optin selected. |
| 40 INSTALL_DIR_IN_USE // Installation directory is in use by another process | 41 INSTALL_DIR_IN_USE // Installation directory is in use by another process |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 extern const wchar_t kSetupExe[]; | 95 extern const wchar_t kSetupExe[]; |
| 95 extern const wchar_t kInstallerDir[]; | 96 extern const wchar_t kInstallerDir[]; |
| 96 | 97 |
| 97 extern const wchar_t kUninstallStringField[]; | 98 extern const wchar_t kUninstallStringField[]; |
| 98 extern const wchar_t kUninstallDisplayNameField[]; | 99 extern const wchar_t kUninstallDisplayNameField[]; |
| 99 extern const wchar_t kUninstallMetricsName[]; | 100 extern const wchar_t kUninstallMetricsName[]; |
| 100 extern const wchar_t kUninstallInstallationDate[]; | 101 extern const wchar_t kUninstallInstallationDate[]; |
| 101 } // namespace installer_util | 102 } // namespace installer_util |
| 102 | 103 |
| 103 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ | 104 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ |
| OLD | NEW |