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

Unified Diff: chrome/common/render_messages_internal.h

Issue 4591001: Display a warning when autofill is disabled for a website. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Now with unit tests! Created 10 years, 1 month 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: chrome/common/render_messages_internal.h
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index f00c8069fd3279dff4e64c7dda32011b15e29e72..298115994cf372b6958f1ff547898dca51042745 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -2083,10 +2083,11 @@ IPC_BEGIN_MESSAGES(ViewHost)
/* resources out */)
// Queries the browser for AutoFill suggestions for a form input field.
- IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill,
+ IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutoFill,
int /* id of this message */,
- bool /* form_autofilled */,
- webkit_glue::FormField /* the form field */)
+ bool /* field autofilled */,
+ webkit_glue::FormField /* the form field */,
+ bool /* autofill disabled */)
// Sent when the popup with AutoFill suggestions for a form is shown.
IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions)

Powered by Google App Engine
This is Rietveld 408576698