OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This file defines the methods useful for uninstalling Chrome. | 5 // This file defines the methods useful for uninstalling Chrome. |
6 | 6 |
7 #include "chrome/installer/setup/uninstall.h" | 7 #include "chrome/installer/setup/uninstall.h" |
8 | 8 |
9 #include <windows.h> | 9 #include <windows.h> |
10 | 10 |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
249 } | 249 } |
250 } | 250 } |
251 | 251 |
252 if (kill) { | 252 if (kill) { |
253 VLOG(1) << installer::kChromeFrameHelperExe << " hung. Killing."; | 253 VLOG(1) << installer::kChromeFrameHelperExe << " hung. Killing."; |
254 base::CleanupProcesses(installer::kChromeFrameHelperExe, base::TimeDelta(), | 254 base::CleanupProcesses(installer::kChromeFrameHelperExe, base::TimeDelta(), |
255 content::RESULT_CODE_HUNG, NULL); | 255 content::RESULT_CODE_HUNG, NULL); |
256 } | 256 } |
257 } | 257 } |
258 | 258 |
259 // This method deletes Chrome shortcut folder from Windows Start menu. It | 259 // Deletes shortcuts at |install_level| from Start menu, Desktop, |
260 // checks system_uninstall to see if the shortcut is in all users start menu | 260 // Quick Launch, and secondary tiles on the Start Screen (Win8+). |
261 // or current user start menu. | 261 // Only shortcuts pointing to |target| will be removed. |
262 // We try to remove the standard desktop shortcut but if that fails we try | 262 void DeleteShortcutsCommon(ShellUtil::ShellChange install_level, |
263 // to remove the alternate desktop shortcut. Only one of them should be | 263 BrowserDistribution* dist, |
264 // present in a given install but at this point we don't know which one. | 264 const string16& target) { |
265 // We remove all start screen secondary tiles by removing the folder Windows | |
266 // uses to store this installation's tiles. | |
267 void DeleteChromeShortcuts(const InstallerState& installer_state, | |
268 const Product& product, | |
269 const string16& chrome_exe) { | |
270 if (!product.is_chrome()) { | |
271 VLOG(1) << __FUNCTION__ " called for non-CHROME distribution"; | |
272 return; | |
273 } | |
274 | |
275 BrowserDistribution* dist = product.distribution(); | |
276 | |
277 // The per-user shortcut for this user, if present on a system-level install, | |
278 // has already been deleted in chrome_browser_main_win.cc::DoUninstallTasks(). | |
279 ShellUtil::ShellChange install_level = installer_state.system_install() ? | |
280 ShellUtil::SYSTEM_LEVEL : ShellUtil::CURRENT_USER; | |
281 | |
282 VLOG(1) << "Deleting Desktop shortcut."; | 265 VLOG(1) << "Deleting Desktop shortcut."; |
283 if (!ShellUtil::RemoveChromeShortcut( | 266 if (!ShellUtil::RemoveChromeShortcut( |
284 ShellUtil::SHORTCUT_DESKTOP, dist, chrome_exe, install_level, NULL)) { | 267 ShellUtil::SHORTCUT_DESKTOP, dist, target, install_level, NULL)) { |
285 LOG(WARNING) << "Failed to delete Desktop shortcut."; | 268 LOG(WARNING) << "Failed to delete Desktop shortcut."; |
286 } | 269 } |
287 // Also try to delete the alternate desktop shortcut. It is not sufficient | 270 // Also try to delete the alternate desktop shortcut. It is not sufficient |
288 // to do so upon failure of the above call as ERROR_FILE_NOT_FOUND on | 271 // to do so upon failure of the above call as ERROR_FILE_NOT_FOUND on |
289 // delete is considered success. | 272 // delete is considered success. |
290 if (!ShellUtil::RemoveChromeShortcut( | 273 if (!ShellUtil::RemoveChromeShortcut( |
291 ShellUtil::SHORTCUT_DESKTOP, dist, chrome_exe, install_level, | 274 ShellUtil::SHORTCUT_DESKTOP, dist, target, install_level, |
292 &dist->GetAlternateApplicationName())) { | 275 &dist->GetAlternateApplicationName())) { |
293 LOG(WARNING) << "Failed to delete alternate Desktop shortcut."; | 276 LOG(WARNING) << "Failed to delete alternate Desktop shortcut."; |
294 } | 277 } |
295 | 278 |
296 VLOG(1) << "Deleting Quick Launch shortcut."; | 279 VLOG(1) << "Deleting Quick Launch shortcut."; |
297 if (!ShellUtil::RemoveChromeShortcut( | 280 if (!ShellUtil::RemoveChromeShortcut( |
298 ShellUtil::SHORTCUT_QUICK_LAUNCH, dist, chrome_exe, install_level, | 281 ShellUtil::SHORTCUT_QUICK_LAUNCH, dist, target, install_level, |
299 NULL)) { | 282 NULL)) { |
300 LOG(WARNING) << "Failed to delete Quick Launch shortcut."; | 283 LOG(WARNING) << "Failed to delete Quick Launch shortcut."; |
301 } | 284 } |
302 | 285 |
303 VLOG(1) << "Deleting Start Menu shortcuts."; | 286 VLOG(1) << "Deleting Start Menu shortcuts."; |
304 if (!ShellUtil::RemoveChromeShortcut( | 287 if (!ShellUtil::RemoveChromeShortcut( |
305 ShellUtil::SHORTCUT_START_MENU, dist, chrome_exe, install_level, | 288 ShellUtil::SHORTCUT_START_MENU, dist, target, install_level, |
306 NULL)) { | 289 NULL)) { |
307 LOG(WARNING) << "Failed to delete Start Menu shortcuts."; | 290 LOG(WARNING) << "Failed to delete Start Menu shortcuts."; |
308 } | 291 } |
309 | 292 |
310 ShellUtil::RemoveChromeStartScreenShortcuts(product.distribution(), | 293 ShellUtil::RemoveChromeStartScreenShortcuts(dist, target); |
311 chrome_exe); | 294 } |
295 | |
296 // Deletes Chrome shortcuts as per DeleteShortcutsCommon(). | |
297 void DeleteChromeShortcuts(const InstallerState& installer_state, | |
298 const Product& product, | |
299 const string16& chrome_exe) { | |
300 if (!product.is_chrome()) { | |
301 VLOG(1) << __FUNCTION__ " called for non-Chrome distribution"; | |
302 return; | |
303 } | |
304 | |
305 VLOG(1) << "Deleting Chrome shortcuts."; | |
306 | |
307 BrowserDistribution* dist = product.distribution(); | |
308 // The per-user shortcut for this user, if present on a system-level install, | |
309 // has already been deleted in chrome_browser_main_win.cc::DoUninstallTasks(). | |
310 ShellUtil::ShellChange install_level = installer_state.system_install() ? | |
311 ShellUtil::SYSTEM_LEVEL : ShellUtil::CURRENT_USER; | |
312 DeleteShortcutsCommon(install_level, dist, chrome_exe); | |
313 } | |
314 | |
315 // Deletes App Launcher shortcuts as per DeleteShortcutsCommon(). | |
316 void DeleteAppLauncherShortcuts(const InstallerState& installer_state, | |
317 const Product& product, | |
318 const string16& app_host_exe) { | |
319 if (!product.is_chrome_app_host()) { | |
320 VLOG(1) << __FUNCTION__ " called for non-App Launcher distribution"; | |
321 return; | |
322 } | |
323 | |
324 VLOG(1) << "Deleting App Launcher shortcuts."; | |
325 ShellUtil::ShellChange install_level = installer_state.system_install() ? | |
326 ShellUtil::SYSTEM_LEVEL : ShellUtil::CURRENT_USER; | |
327 | |
328 // Remove this check once we have system-level App Host. | |
329 DCHECK(install_level == ShellUtil::CURRENT_USER); | |
gab
2012/11/02 04:19:58
I find this weird... if you want to keep the above
erikwright (departed)
2012/11/02 04:31:01
There's presumably more code that would be needed
gab
2012/11/02 04:39:54
Well, no additional code would be required here th
erikwright (departed)
2012/11/02 04:48:39
If that's the case (I hadn't looked, assumed it wa
gab
2012/11/02 12:43:35
Well, thinking more about it, when you do implemen
grt (UTC plus 2)
2012/11/02 19:55:30
DCHECK_EQ
huangs
2012/11/02 21:05:10
Moved the check to the caller.
huangs
2012/11/02 21:05:10
Thanks (not applicable for this case any more thou
| |
330 DeleteShortcutsCommon(install_level, product.distribution(), app_host_exe); | |
312 } | 331 } |
313 | 332 |
314 bool ScheduleParentAndGrandparentForDeletion(const FilePath& path) { | 333 bool ScheduleParentAndGrandparentForDeletion(const FilePath& path) { |
315 FilePath parent_dir = path.DirName(); | 334 FilePath parent_dir = path.DirName(); |
316 bool ret = ScheduleFileSystemEntityForDeletion(parent_dir.value().c_str()); | 335 bool ret = ScheduleFileSystemEntityForDeletion(parent_dir.value().c_str()); |
317 if (!ret) { | 336 if (!ret) { |
318 LOG(ERROR) << "Failed to schedule parent dir for deletion: " | 337 LOG(ERROR) << "Failed to schedule parent dir for deletion: " |
319 << parent_dir.value(); | 338 << parent_dir.value(); |
320 } else { | 339 } else { |
321 FilePath grandparent_dir(parent_dir.DirName()); | 340 FilePath grandparent_dir(parent_dir.DirName()); |
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1046 new_cmd.AppendSwitch(installer::switches::kRemoveChromeRegistration); | 1065 new_cmd.AppendSwitch(installer::switches::kRemoveChromeRegistration); |
1047 if (!suffix.empty()) { | 1066 if (!suffix.empty()) { |
1048 new_cmd.AppendSwitchNative( | 1067 new_cmd.AppendSwitchNative( |
1049 installer::switches::kRegisterChromeBrowserSuffix, suffix); | 1068 installer::switches::kRegisterChromeBrowserSuffix, suffix); |
1050 } | 1069 } |
1051 DWORD exit_code = installer::UNKNOWN_STATUS; | 1070 DWORD exit_code = installer::UNKNOWN_STATUS; |
1052 InstallUtil::ExecuteExeAsAdmin(new_cmd, &exit_code); | 1071 InstallUtil::ExecuteExeAsAdmin(new_cmd, &exit_code); |
1053 } | 1072 } |
1054 } | 1073 } |
1055 | 1074 |
1075 if (product.is_chrome_app_host()) { | |
1076 const string16 app_host_exe(installer_state | |
1077 .target_path().Append(installer::kChromeAppHostExe).value()); | |
gab
2012/11/02 04:19:58
nit: style dictates that either you wrap at the pa
huangs
2012/11/02 21:05:10
Done.
| |
1078 // Delete shortcuts from Start menu, Desktop, and Quick Launch. | |
1079 DeleteAppLauncherShortcuts(installer_state, product, app_host_exe); | |
1080 } | |
1081 | |
1056 // Chrome is not in use so lets uninstall Chrome by deleting various files | 1082 // Chrome is not in use so lets uninstall Chrome by deleting various files |
1057 // and registry entries. Here we will just make best effort and keep going | 1083 // and registry entries. Here we will just make best effort and keep going |
1058 // in case of errors. | 1084 // in case of errors. |
1059 if (is_chrome) { | 1085 if (is_chrome) { |
1060 ClearRlzProductState(); | 1086 ClearRlzProductState(); |
1061 // Delete the key that delegate_execute might make. | 1087 // Delete the key that delegate_execute might make. |
1062 if (base::win::GetVersion() >= base::win::VERSION_WIN8) { | 1088 if (base::win::GetVersion() >= base::win::VERSION_WIN8) { |
1063 InstallUtil::DeleteRegistryKey(HKEY_CURRENT_USER, | 1089 InstallUtil::DeleteRegistryKey(HKEY_CURRENT_USER, |
1064 chrome::kMetroRegistryPath); | 1090 chrome::kMetroRegistryPath); |
1065 } | 1091 } |
1066 | 1092 |
1067 auto_launch_util::DisableAllAutoStartFeatures( | 1093 auto_launch_util::DisableAllAutoStartFeatures( |
1068 ASCIIToUTF16(chrome::kInitialProfile)); | 1094 ASCIIToUTF16(chrome::kInitialProfile)); |
1069 | 1095 |
1070 // First delete shortcuts from Start->Programs, Desktop & Quick Launch. | 1096 // First delete shortcuts from Start menu, Desktop, and Quick Launch. |
gab
2012/11/02 04:19:58
Again, remove "First" as this is the only thing yo
huangs
2012/11/02 21:05:10
Done.
| |
1071 DeleteChromeShortcuts(installer_state, product, chrome_exe); | 1097 DeleteChromeShortcuts(installer_state, product, chrome_exe); |
1072 } | 1098 } |
1073 | 1099 |
1074 // Delete the registry keys (Uninstall key and Version key). | 1100 // Delete the registry keys (Uninstall key and Version key). |
1075 HKEY reg_root = installer_state.root_key(); | 1101 HKEY reg_root = installer_state.root_key(); |
1076 | 1102 |
1077 // Note that we must retrieve the distribution-specific data before deleting | 1103 // Note that we must retrieve the distribution-specific data before deleting |
1078 // product.GetVersionKey(). | 1104 // product.GetVersionKey(). |
1079 string16 distribution_data(browser_dist->GetDistributionData(reg_root)); | 1105 string16 distribution_data(browser_dist->GetDistributionData(reg_root)); |
1080 | 1106 |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1265 | 1291 |
1266 // Try and delete the preserved local state once the post-install | 1292 // Try and delete the preserved local state once the post-install |
1267 // operations are complete. | 1293 // operations are complete. |
1268 if (!backup_state_file.empty()) | 1294 if (!backup_state_file.empty()) |
1269 file_util::Delete(backup_state_file, false); | 1295 file_util::Delete(backup_state_file, false); |
1270 | 1296 |
1271 return ret; | 1297 return ret; |
1272 } | 1298 } |
1273 | 1299 |
1274 } // namespace installer | 1300 } // namespace installer |
OLD | NEW |