summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgwilson@chromium.org <gwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 22:22:04 +0000
committergwilson@chromium.org <gwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 22:22:04 +0000
commit311f7e606e5334a2579bd28fed0f31defdf0cea4 (patch)
treee671eed5cad34f18f33a448bed490ae54985fd24
parenteaf185e0430a908da10b61ef024c4d4cdcc5dbaa (diff)
downloadchromium_src-311f7e606e5334a2579bd28fed0f31defdf0cea4.zip
chromium_src-311f7e606e5334a2579bd28fed0f31defdf0cea4.tar.gz
chromium_src-311f7e606e5334a2579bd28fed0f31defdf0cea4.tar.bz2
Merge 40638 - Modifies the uninstall path from the toast to appropriately handle systemlevel installs.
R=cpu BUG=none TEST=run toast with systemlevel install, choose uninstall option, uninstall should proceed as expected. Review URL: http://codereview.chromium.org/661472 TBR=cpu@chromium.org Review URL: http://codereview.chromium.org/669103 git-svn-id: svn://svn.chromium.org/chrome/branches/249/src@40671 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/installer/util/google_chrome_distribution.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc
index 9b69b5a..7d864ba 100644
--- a/chrome/installer/util/google_chrome_distribution.cc
+++ b/chrome/installer/util/google_chrome_distribution.cc
@@ -584,6 +584,6 @@ void GoogleChromeDistribution::InactiveUserToastExperiment(int flavor,
// The user wants to uninstall. This is a best effort operation. Note that
// we waited for chrome to exit so the uninstall would not detect chrome
// running.
- base::LaunchApp(InstallUtil::GetChromeUninstallCmd(false),
+ base::LaunchApp(InstallUtil::GetChromeUninstallCmd(system_install),
false, false, NULL);
}