Bug 1172574 - Prevent the default browser check and the about:config warning by default for the scratch_user;r=mossop

MozReview-Commit-ID: KNQyCrZo41O
This commit is contained in:
Brian Grinstead
2017-07-28 15:38:30 -07:00
parent e3a8bf0d84
commit abb23f6691

View File

@@ -1329,7 +1329,10 @@ class RunProgram(MachCommandBase):
no_profile_option_given = \
all(p not in params for p in ['-profile', '--profile', '-P'])
if no_profile_option_given and not noprofile:
prefs = { }
prefs = {
'browser.shell.checkDefaultBrowser': False,
'general.warnOnAboutConfig': False,
}
prefs.update(self._mach_context.settings.runprefs)
prefs.update([p.split('=', 1) for p in setpref])
for pref in prefs: