gecko-dev/mobile/android/app/geckoview-prefs.js
James Willcox e639e656a8 Bug 1467921 - Disable Web Push in GeckoView r=jchen
MozReview-Commit-ID: 77tCU6T94LG
2018-07-02 11:47:24 -05:00

24 lines
739 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#filter substitution
#include mobile.js
pref("privacy.trackingprotection.pbmode.enabled", false);
pref("dom.ipc.processCount", 1);
pref("dom.ipc.keepProcessesAlive.web", 1);
pref("dom.ipc.processPrelaunch.enabled", false);
// Tell Telemetry that we're in GeckoView mode.
pref("toolkit.telemetry.isGeckoViewMode", true);
// Disable the Telemetry Event Ping
pref("toolkit.telemetry.eventping.enabled", false);
pref("geckoview.console.enabled", false);
// Disable Web Push until we get it working
pref("dom.push.enabled", false);