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

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

Issue 492043003: Fill on account select in the password manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on ToT Created 6 years, 2 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/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index e339a6445bf647809971e24f66b528f2e6d2a25b..9bb9ec43247dd5cbb972e7b38519ca1f94082c0d 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -292,6 +292,14 @@ IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions,
bool /* show all suggestions */,
gfx::RectF /* input field bounds, window-relative */)
+// Instruct the browser to show a popup with suggestions from the password
+// manager for a pasword field.
+IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestionsForPasswordField,
Garrett Casto 2014/11/04 23:35:30 Seems like this should just be an additional param
jww 2014/11/06 21:28:56 Done.
+ autofill::FormFieldData /* the form field */,
+ base::string16 /* username */,
+ bool /* show all suggestions */,
+ gfx::RectF /* input field bounds, window-relative */)
+
// Inform browser of data list values for the curent field.
IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
std::vector<base::string16> /* values */,

Powered by Google App Engine
This is Rietveld 408576698