Source code
Revision control
Copy as Markdown
Other Tools
/* 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
// Preferences file used by the raptor harness exclusively on android
/* globals user_pref */
// disk cache smart size is enabled in shipped apps
user_pref("browser.cache.disk.smart_size.enabled", true);
// Raptor's manifest.json contains the "geckoProfiler" permission, which is
// not supported on Android. Ignore the warning about the unknown permission.
user_pref("extensions.webextensions.warnings-as-errors", false);
user_pref("toolkit.telemetry.server", "");
// Default Glean to "record but don't report" mode, and to never trigger
// activity-based ping submission. Docs:
user_pref("telemetry.fog.test.localhost_port", -1);
user_pref("telemetry.fog.test.activity_limit", -1);
user_pref("telemetry.fog.test.inactivity_limit", -1);
// Turn off update
user_pref("app.update.disabledForTesting", true);