Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(872)

Unified Diff: chrome/installer/util/shell_util.cc

Issue 660168: Disable registering, unregistering, and setting default browser... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/shell_util.cc
===================================================================
--- chrome/installer/util/shell_util.cc (revision 40086)
+++ chrome/installer/util/shell_util.cc (working copy)
@@ -600,6 +600,9 @@
bool ShellUtil::MakeChromeDefault(int shell_change,
const std::wstring& chrome_exe,
bool elevate_if_not_admin) {
+ if (!BrowserDistribution::GetDistribution()->CanSetAsDefault())
+ return false;
+
ShellUtil::RegisterChromeBrowser(chrome_exe, L"", elevate_if_not_admin);
bool ret = true;
@@ -657,6 +660,9 @@
bool ShellUtil::RegisterChromeBrowser(const std::wstring& chrome_exe,
const std::wstring& unique_suffix,
bool elevate_if_not_admin) {
+ if (!BrowserDistribution::GetDistribution()->CanSetAsDefault())
+ return false;
+
// First figure out we need to append a suffix to the registry entries to
// make them unique.
std::wstring suffix;
« chrome/browser/browser_init.cc ('K') | « chrome/installer/util/google_chrome_sxs_distribution.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698