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

Unified Diff: components/autofill/core/common/password_form.h

Issue 894583003: Rename PasswordForm::is_zero_click to PasswordForm::skip_next_zero_click. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix linux Created 5 years, 10 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/autofill/core/common/password_form.h
diff --git a/components/autofill/core/common/password_form.h b/components/autofill/core/common/password_form.h
index be85cd3e21eccd3360ae5b959f0261cdd3575557..29d369a7f5a7f08f3522669fec40c76ee5e54724 100644
--- a/components/autofill/core/common/password_form.h
+++ b/components/autofill/core/common/password_form.h
@@ -218,9 +218,10 @@ struct PasswordForm {
// The URL of identity provider used for federated login.
GURL federation_url;
- // If true, Chrome will sign the user in automatically using the credentials.
- // This field isn't synced deliberately.
- bool is_zero_click;
+ // If true, Chrome will not return this credential to a site in response to
+ // 'navigator.credentials.request()' without user interaction.
+ // Once user selects this credential the flag is reseted.
+ bool skip_zero_click;
// Returns true if this match was found using public suffix matching.
bool IsPublicSuffixMatch() const;
« no previous file with comments | « chrome/browser/password_manager/password_store_mac_unittest.cc ('k') | components/autofill/core/common/password_form.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698