browser(firefox): always create new process rather than reuse one (#3312)

This commit is contained in:
Yury Semikhatsky 2020-08-05 15:48:26 -07:00 committed by GitHub
parent c45f7afe61
commit 9effb32650
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -1,2 +1,2 @@
1152
Changed: yurys@chromium.org Tue Aug 4 17:40:33 PDT 2020
1153
Changed: yurys@chromium.org Wed Aug 5 13:40:00 PDT 2020

View file

@ -10,6 +10,10 @@ pref("ui.systemUsesDarkTheme", 0);
//
pref("dom.ipc.processCount", 60000);
// Never reuse processes as they may keep previously overridden values
// (locale, timezone etc.).
pref("dom.ipc.processPrelaunch.enabled", false);
// Do not use system colors - they are affected by themes.
pref("ui.use_standins_for_native_colors", true);