From 4b6c05779dacd66764a316326e1855e8d2943d25 Mon Sep 17 00:00:00 2001 From: "gab@chromium.org" Date: Tue, 5 Mar 2013 16:15:14 +0000 Subject: Fix some comments in DeleteChromeRegistrationKeys. Those comments were invalidated as of http://crrev.com/154145 R=grt@chromium.org NOTRY=True BUG=None Review URL: https://chromiumcodereview.appspot.com/12390082 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@186184 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/installer/setup/uninstall.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'chrome/installer/setup') diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc index 2458eef..89436a9 100644 --- a/chrome/installer/setup/uninstall.cc +++ b/chrome/installer/setup/uninstall.cc @@ -764,16 +764,13 @@ bool DeleteChromeRegistrationKeys(const InstallerState& installer_state, base::FilePath chrome_exe(installer_state.target_path().Append(kChromeExe)); // Delete Software\Classes\ChromeHTML. - // For user-level installs we now only write these entries in HKCU, but since - // old installs did install them to HKLM we will try to remove them in HKLM as - // well anyways. const string16 prog_id(ShellUtil::kChromeHTMLProgId + browser_entry_suffix); string16 reg_prog_id(ShellUtil::kRegClasses); reg_prog_id.push_back(base::FilePath::kSeparators[0]); reg_prog_id.append(prog_id); InstallUtil::DeleteRegistryKey(root, reg_prog_id); - // Delete Software\Classes\Chrome (Same comment as above applies for this too) + // Delete Software\Classes\Chrome. string16 reg_app_id(ShellUtil::kRegClasses); reg_app_id.push_back(base::FilePath::kSeparators[0]); // Append the requested suffix manually here (as ShellUtil::GetBrowserModelId -- cgit v1.1