Index: chrome/installer/util/shell_util.cc |
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc |
index 37ed8c214ea4ccb25235cdf4606505f92aea8a4e..f10e5898b4d5796b17cb6079245f71e0bd7b45a7 100644 |
--- a/chrome/installer/util/shell_util.cc |
+++ b/chrome/installer/util/shell_util.cc |
@@ -1457,10 +1457,8 @@ bool ShellUtil::RegisterChromeBrowser(BrowserDistribution* dist, |
&progid_and_appreg_entries); |
RegistryEntry::GetShellIntegrationEntries( |
dist, chrome_exe, suffix, &shell_entries); |
- return AddRegistryEntries(user_level ? HKEY_CURRENT_USER : |
- HKEY_LOCAL_MACHINE, |
- progid_and_appreg_entries) && |
- AddRegistryEntries(root, shell_entries); |
+ return AddRegistryEntries(root, progid_and_appreg_entries) && |
gab
2012/08/30 17:55:19
Do not check this in!!
grt (UTC plus 2)
2012/08/30 19:10:18
Good catch! +1 to that.
huangs
2012/08/30 20:14:22
Doh! Forgot about this.
|
+ AddRegistryEntries(root, shell_entries); |
} |
// If the user is not an admin and OS is between Vista and Windows 7 |