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

Unified Diff: components/autofill/content/common/autofill_messages.h

Issue 767353002: Support for password manager suggestions on password fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Added message value to iOS grit whitelist 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/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index 916d99b5d5d938313c5a87ab0c958035271884e8..c680d8a27d76dc06f225ca75073ea4d5ad511efe 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -298,12 +298,13 @@ IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePasswordGenerationPopup)
// Instruct the browser to show a popup with suggestions filled from data
// associated with |key|. The popup will use |text_direction| for displaying
// text.
-IPC_MESSAGE_ROUTED5(AutofillHostMsg_ShowPasswordSuggestions,
- int /* key */,
- base::i18n::TextDirection /*text_direction */,
- base::string16 /* username typed by user */,
- bool /* show all suggestions */,
- gfx::RectF /* input field bounds, window-relative */)
+IPC_MESSAGE_ROUTED5(
+ AutofillHostMsg_ShowPasswordSuggestions,
+ int /* key */,
+ base::i18n::TextDirection /* text_direction */,
+ base::string16 /* username typed by user */,
+ int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */,
+ gfx::RectF /* input field bounds, window-relative */)
// Inform browser of data list values for the curent field.
IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,

Powered by Google App Engine
This is Rietveld 408576698