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

Unified Diff: chrome/browser/browser_init.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
« no previous file with comments | « no previous file | chrome/installer/setup/setup_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_init.cc
===================================================================
--- chrome/browser/browser_init.cc (revision 39907)
+++ chrome/browser/browser_init.cc (working copy)
@@ -40,6 +40,7 @@
#include "chrome/common/pref_names.h"
#include "chrome/common/result_codes.h"
#include "chrome/common/url_constants.h"
+#include "chrome/installer/util/browser_distribution.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "grit/locale_settings.h"
@@ -193,6 +194,10 @@
virtual void Run() {
if (ShellIntegration::IsDefaultBrowser())
return;
+#if defined(OS_WIN)
+ if (!BrowserDistribution::GetDistribution()->CanSetAsDefault())
+ return;
mattm 2010/02/26 23:53:50 could do this check before the IsDefaultBrowser ca
huanr 2010/02/27 00:02:34 However we should optimize for the more common cas
+#endif
ChromeThread::PostTask(
ChromeThread::UI, FROM_HERE, new NotifyNotDefaultBrowserTask());
« no previous file with comments | « no previous file | chrome/installer/setup/setup_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698