Chromium Code Reviews| Index: chrome/installer/setup/uninstall.cc |
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc |
| index 2458eeff1ab688ad0262e76fdbde40ee97d977bb..806f1f8e1525d09a1c5a8a92b10106a93d47aa70 100644 |
| --- a/chrome/installer/setup/uninstall.cc |
| +++ b/chrome/installer/setup/uninstall.cc |
| @@ -763,17 +763,14 @@ 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. |
| + // Delete Software\Classes\ChromeHTML |
|
grt (UTC plus 2)
2013/03/05 15:06:59
nit: period at the end of the sentence.
gab
2013/03/05 16:14:53
Done.
|
| 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 |
|
grt (UTC plus 2)
2013/03/05 15:06:59
nit: period at the end of the sentence.
gab
2013/03/05 16:14:53
Done.
|
| string16 reg_app_id(ShellUtil::kRegClasses); |
| reg_app_id.push_back(base::FilePath::kSeparators[0]); |
| // Append the requested suffix manually here (as ShellUtil::GetBrowserModelId |