From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Thu, 19 Dec 2019 21:46:10 +0100 Subject: Disable autofill assistant by default --- .../autofill_assistant/AutofillAssistantPreferencesUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/android/features/autofill_assistant/public/java/src/org/chromium/chrome/browser/autofill_assistant/AutofillAssistantPreferencesUtil.java b/chrome/android/features/autofill_assistant/public/java/src/org/chromium/chrome/browser/autofill_assistant/AutofillAssistantPreferencesUtil.java --- a/chrome/android/features/autofill_assistant/public/java/src/org/chromium/chrome/browser/autofill_assistant/AutofillAssistantPreferencesUtil.java +++ b/chrome/android/features/autofill_assistant/public/java/src/org/chromium/chrome/browser/autofill_assistant/AutofillAssistantPreferencesUtil.java @@ -23,7 +23,7 @@ public class AutofillAssistantPreferencesUtil { /** Checks whether the Autofill Assistant switch preference in settings is on. */ static boolean isAutofillAssistantSwitchOn() { return SharedPreferencesManager.getInstance().readBoolean( - ChromePreferenceKeys.AUTOFILL_ASSISTANT_ENABLED, true); + ChromePreferenceKeys.AUTOFILL_ASSISTANT_ENABLED, false); } /** Checks whether the proactive help switch preference in settings is on. */ -- 2.17.1