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

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: Add tests for when AutoFill is disabled by the user 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 a4ac77f778360e0afec75be58c221fccce75f97b..73e7d26429ba7a01f3d59e06d71c8da425f25d85 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -2091,10 +2091,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