Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8555)

Unified Diff: components/password_manager/core/common/password_manager_features.cc

Issue 2066703004: Change fill-on-account-select to use Features API, not a custom flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix tests on iOS Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/password_manager/core/common/password_manager_features.cc
diff --git a/components/password_manager/core/common/password_manager_features.cc b/components/password_manager/core/common/password_manager_features.cc
index 849d7f7d2f485d0f39e0de9db1281f232b9d6b62..a65edefa4574a1a06456dec3486dde77c5fa12b3 100644
--- a/components/password_manager/core/common/password_manager_features.cc
+++ b/components/password_manager/core/common/password_manager_features.cc
@@ -55,6 +55,11 @@ const base::Feature kPasswordImportExport = {"password-import-export",
const base::Feature kViewPasswords = {"view-passwords",
base::FEATURE_DISABLED_BY_DEFAULT};
+// Enables the experiment for the password manager to only fill on account
+// selection, rather than autofilling on page load, with highlighting of fields.
+const base::Feature kFillOnAccountSelect = {"fill-on-account-select",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
} // namespace features
} // namespace password_manager

Powered by Google App Engine
This is Rietveld 408576698