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..1989e93558d204e76cd9732e24e4454816145dd5 100644 |
--- a/components/autofill/core/common/autofill_constants.h |
+++ b/components/autofill/core/common/autofill_constants.h |
@@ -20,6 +20,12 @@ extern const char kHelpURL[]; |
// it's not necessary. |
extern const size_t kRequiredAutofillFields; |
+// Options bitmask values for AutofillHostMsg_ShowPasswordSuggestions IPC |
+enum ShowPasswordSuggestionsOptions { |
+ SHOW_ALL = 1 << 0 /* show all credentials, not just ones matching username */, |
+ IS_PASSWORD_FIELD = 1 << 1 /* input field is a password field */ |
+}; |
+ |
} // namespace autofill |
#endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_CONSTANTS_H_ |