| Index: chrome/installer/setup/uninstall.cc
|
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc
|
| index 6aeee430051aa54318d8d406e11e72c7d7cab7ca..c2200badb62ab44d2095f2bc8f883f4e4cfe051c 100644
|
| --- a/chrome/installer/setup/uninstall.cc
|
| +++ b/chrome/installer/setup/uninstall.cc
|
| @@ -559,8 +559,10 @@ bool DeleteChromeRegistrationKeys(BrowserDistribution* dist, HKEY root,
|
| std::wstring parent_key(ShellUtil::kRegClasses);
|
| const std::wstring::size_type base_length = parent_key.size();
|
| std::wstring child_key;
|
| - for (const wchar_t* const* proto = &ShellUtil::kProtocolAssociations[0];
|
| - *proto != NULL; ++proto) {
|
| + for (const wchar_t* const* proto =
|
| + &ShellUtil::kPotentialProtocolAssociations[0];
|
| + *proto != NULL;
|
| + ++proto) {
|
| parent_key.resize(base_length);
|
| file_util::AppendToPath(&parent_key, *proto);
|
| child_key.assign(parent_key).append(ShellUtil::kRegShellOpen);
|
|
|