Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8028)

Unified Diff: chrome/installer/setup/setup_main.cc

Issue 6156005: Fix problem with uninstallation of multi-install products.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/setup_main.cc
===================================================================
--- chrome/installer/setup/setup_main.cc (revision 70925)
+++ chrome/installer/setup/setup_main.cc (working copy)
@@ -736,7 +736,8 @@
bool initialized_;
};
-bool PopulateInstallations(const MasterPreferences& prefs,
+bool PopulateInstallations(bool for_uninstall,
+ const MasterPreferences& prefs,
ProductPackageMapping* installations) {
DCHECK(installations);
bool success = true;
@@ -744,10 +745,11 @@
bool implicit_chrome_install = false;
bool implicit_gcf_install = false;
- if (prefs.is_multi_install()) {
- // See what products are already installed in multi mode.
- // When we do multi installs, we must upgrade all installations
- // in sync since they share the binaries.
+ // See what products are already installed in multi mode.
+ // When we do multi installs, we must upgrade all installations in sync since
+ // they share the binaries. Be careful to not do this when we're uninstalling
+ // a product.
+ if (prefs.is_multi_install() && !for_uninstall) {
struct CheckInstall {
bool* installed;
BrowserDistribution::Type type;
@@ -768,13 +770,15 @@
}
if (prefs.install_chrome() || implicit_chrome_install) {
- VLOG(1) << "Install distribution: Chrome";
+ VLOG(1) << (for_uninstall ? "Uninstall" : "Install")
+ << " distribution: Chrome";
success = installations->AddDistribution(
BrowserDistribution::CHROME_BROWSER, prefs);
}
if (success && (prefs.install_chrome_frame() || implicit_gcf_install)) {
- VLOG(1) << "Install distribution: Chrome Frame";
+ VLOG(1) << (for_uninstall ? "Uninstall" : "Install")
+ << " distribution: Chrome Frame";
success = installations->AddDistribution(
BrowserDistribution::CHROME_FRAME, prefs);
}
@@ -876,9 +880,10 @@
InstallerState installer_state;
installer_state.Initialize(prefs, original_state);
+ const bool is_uninstall = cmd_line.HasSwitch(installer::switches::kUninstall);
ProductPackageMapping installations(prefs.is_multi_install(), system_install);
- if (!PopulateInstallations(prefs, &installations)) {
+ if (!PopulateInstallations(is_uninstall, prefs, &installations)) {
// Currently this can only fail if one of the installations is a multi and
// a pre-existing single installation exists or vice versa.
installer::InstallStatus status = installer::NON_MULTI_INSTALLATION_EXISTS;
@@ -952,8 +957,6 @@
}
}
- bool is_uninstall = cmd_line.HasSwitch(installer::switches::kUninstall);
-
installer::InstallStatus install_status = installer::UNKNOWN_STATUS;
// If --uninstall option is given, uninstall chrome
if (is_uninstall) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698