From 14058975a89a5ec342bf4a2c73ec35a861f12c3d Mon Sep 17 00:00:00 2001 From: Jim Mathies Date: Fri, 25 Sep 2020 16:49:44 +0000 Subject: [PATCH] Bug 1667388 - Ship credit card autofill in Fx82 by default. r=zbraniecki, a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D91435 --- browser/app/profile/firefox.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 538d9197705d..198970a96dfa 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1899,17 +1899,10 @@ pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); pref("extensions.formautofill.available", "detect"); pref("extensions.formautofill.addresses.enabled", true); pref("extensions.formautofill.addresses.capture.enabled", false); -#ifdef NIGHTLY_BUILD pref("extensions.formautofill.creditCards.available", true); pref("extensions.formautofill.creditCards.enabled", true); // Checkbox in sync options for credit card data sync service pref("services.sync.engine.creditcards.available", true); -#else -pref("extensions.formautofill.creditCards.available", false); -pref("extensions.formautofill.creditCards.enabled", false); -// Checkbox in sync options for credit card data sync service -pref("services.sync.engine.creditcards.available", false); -#endif // Temporary preference to control displaying the UI elements for // credit card autofill used for the duration of the A/B test. pref("extensions.formautofill.creditCards.hideui", false);