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

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

Issue 767353002: Support for password manager suggestions on password fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Address gcasto's comments Created 6 years 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/autofill_constants.h
diff --git a/components/autofill/core/common/autofill_constants.h b/components/autofill/core/common/autofill_constants.h
index 9386b45f3c38d89ee498d4d67e82e1ebc99a09c1..1d639886f5ede549e0f117b3b71de436fb08c83e 100644
--- a/components/autofill/core/common/autofill_constants.h
+++ b/components/autofill/core/common/autofill_constants.h
@@ -20,6 +20,11 @@ extern const char kHelpURL[];
// it's not necessary.
extern const size_t kRequiredAutofillFields;
+enum ShowPasswordSuggestionsOptions {
Evan Stade 2014/12/03 17:54:50 docs for each enum value
jww 2014/12/04 18:59:56 Done.
+ SHOW_ALL = 1 << 0,
+ IS_PASSWORD_FIELD = 1 << 1
+};
+
} // namespace autofill
#endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698