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

MozReview-Commit-ID: KNQyCrZo41O

--HG--
extra : rebase_source : e38e9807c83b285f123e37db7e7e0e7edd8669e8
This commit is contained in:
Brian Grinstead 2017-07-28 15:38:30 -07:00
Родитель d22141a17f
Коммит b151605206
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -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: