Bug 1215494 - Don't set b2g.safe_mode pref in child process. r=fabrice

This commit is contained in:
Gregor Wagner 2015-12-03 18:23:22 +01:00
Родитель 73cba43755
Коммит 03c5c2e7d0
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -848,7 +848,9 @@ nsAppShell::nsAppShell()
, mPowerKeyChecked(false)
{
gAppShell = this;
Preferences::SetCString("b2g.safe_mode", "unset");
if (XRE_IsParentProcess()) {
Preferences::SetCString("b2g.safe_mode", "unset");
}
}
nsAppShell::~nsAppShell()