Skip to content

Commit

Permalink
Disable web extension process until it is able to restart (#3218)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemarvin committed Apr 22, 2020
1 parent 106103c commit 95c72d4
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -45,6 +45,8 @@ public static void vrPrefsWorkAround(Context aContext, Bundle aExtras) {
// Disable WebRender until it works with FxR
out.write("pref(\"gfx.webrender.force-disabled\", true);\n".getBytes());
out.write("pref(\"signon.rememberSignons\", false);\n".getBytes());
// Disable web extension process until it is able to restart.
out.write("pref(\"extensions.webextensions.remote\", false);\n".getBytes());
if (BuildConfig.DEBUG) {
int processCount = SettingsStore.getInstance(aContext).isMultiE10s() ? 3 : 1;
out.write(("pref(\"dom.ipc.processCount\", " + processCount + ");\n").getBytes());
Expand Down

0 comments on commit 95c72d4

Please sign in to comment.