use mozprofile::preferences::Pref;
lazy_static! {
pub static ref DEFAULT: Vec<(&'static str, Pref)> = vec![
("app.normandy.api_url", Pref::new("")),
("app.update.checkInstallTime", Pref::new(false)),
("app.update.disabledForTesting", Pref::new(true)),
("browser.dom.window.dump.enabled", Pref::new(true)),
("devtools.console.stdout.chrome", Pref::new(true)),
("browser.sessionstore.resume_from_crash", Pref::new(false)),
("browser.shell.checkDefaultBrowser", Pref::new(false)),
("browser.startup.homepage_override.mstone", Pref::new("ignore")),
("browser.startup.page", Pref::new(0)),
("browser.uitour.enabled", Pref::new(false)),
("browser.warnOnQuit", Pref::new(false)),
("datareporting.healthreport.documentServerURI", Pref::new("http://%(server)s/dummy/healthreport/")),
("datareporting.healthreport.logging.consoleEnabled", Pref::new(false)),
("datareporting.healthreport.service.enabled", Pref::new(false)),
("datareporting.healthreport.service.firstRun", Pref::new(false)),
("datareporting.healthreport.uploadEnabled", Pref::new(false)),
("datareporting.policy.dataSubmissionEnabled", Pref::new(false)),
("datareporting.policy.dataSubmissionPolicyBypassNotification", Pref::new(true)),
("dom.ipc.reportProcessHangs", Pref::new(false)),
("extensions.autoDisableScopes", Pref::new(0)),
("extensions.enabledScopes", Pref::new(5)),
("extensions.installDistroAddons", Pref::new(false)),
("extensions.update.enabled", Pref::new(false)),
("extensions.update.notifyUser", Pref::new(false)),
("focusmanager.testmode", Pref::new(true)),
("general.useragent.updates.enabled", Pref::new(false)),
("geo.provider.testing", Pref::new(true)),
("geo.wifi.scan", Pref::new(false)),
("hangmonitor.timeout", Pref::new(0)),
("idle.lastDailyNotification", Pref::new(-1)),
("media.gmp-manager.updateEnabled", Pref::new(false)),
("media.sanity-test.disabled", Pref::new(true)),
("network.manage-offline-status", Pref::new(false)),
("network.sntp.pools", Pref::new("%(server)s")),
("security.certerrors.mitm.priming.enabled", Pref::new(false)),
("services.settings.server", Pref::new("data:,#remote-settings-dummy/v1")),
("startup.homepage_welcome_url", Pref::new("about:blank")),
("startup.homepage_welcome_url.additional", Pref::new("")),
("browser.newtabpage.activity-stream.asrouter.providers.cfr", Pref::new("null")),
("browser.newtabpage.activity-stream.asrouter.providers.cfr-fxa", Pref::new("null")),
("browser.newtabpage.activity-stream.asrouter.providers.snippets", Pref::new("null")),
("browser.newtabpage.activity-stream.asrouter.providers.message-groups", Pref::new("null")),
("browser.newtabpage.activity-stream.asrouter.providers.whats-new-panel", Pref::new("null")),
("browser.newtabpage.activity-stream.asrouter.providers.messaging-experiments", Pref::new("null")),
("browser.newtabpage.activity-stream.feeds.system.topstories", Pref::new(false)),
("browser.newtabpage.activity-stream.feeds.snippets", Pref::new(false)),
("browser.newtabpage.activity-stream.tippyTop.service.endpoint", Pref::new("")),
("browser.newtabpage.activity-stream.discoverystream.config", Pref::new("[]")),
("browser.newtabpage.activity-stream.fxaccounts.endpoint", Pref::new("")),
("toolkit.startup.max_resumed_crashes", Pref::new(-1)),
("browser.webapps.checkForUpdates", Pref::new(0)),
];
}