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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 2065 matching lines...) Expand 10 before | Expand all | Expand 10 after
2076 int /* host_id */, 2076 int /* host_id */,
2077 bool /* success */) 2077 bool /* success */)
2078 2078
2079 // Gets resource list from appcache synchronously. 2079 // Gets resource list from appcache synchronously.
2080 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_GetResourceList, 2080 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_GetResourceList,
2081 int /* host_id in*/, 2081 int /* host_id in*/,
2082 std::vector<appcache::AppCacheResourceInfo> 2082 std::vector<appcache::AppCacheResourceInfo>
2083 /* resources out */) 2083 /* resources out */)
2084 2084
2085 // Queries the browser for AutoFill suggestions for a form input field. 2085 // Queries the browser for AutoFill suggestions for a form input field.
2086 IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill, 2086 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutoFill,
2087 int /* id of this message */, 2087 int /* id of this message */,
2088 bool /* form_autofilled */, 2088 bool /* field autofilled */,
2089 webkit_glue::FormField /* the form field */) 2089 webkit_glue::FormField /* the form field */,
2090 bool /* autofill disabled */)
2090 2091
2091 // Sent when the popup with AutoFill suggestions for a form is shown. 2092 // Sent when the popup with AutoFill suggestions for a form is shown.
2092 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions) 2093 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions)
2093 2094
2094 // Instructs the browser to fill in the values for a form using AutoFill 2095 // Instructs the browser to fill in the values for a form using AutoFill
2095 // profile data. 2096 // profile data.
2096 IPC_MESSAGE_ROUTED3(ViewHostMsg_FillAutoFillFormData, 2097 IPC_MESSAGE_ROUTED3(ViewHostMsg_FillAutoFillFormData,
2097 int /* id of this message */, 2098 int /* id of this message */,
2098 webkit_glue::FormData /* the form */, 2099 webkit_glue::FormData /* the form */,
2099 int /* profile unique ID */) 2100 int /* profile unique ID */)
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
3066 base::PlatformFileInfo, /* info */ 3067 base::PlatformFileInfo, /* info */
3067 base::PlatformFileError /* error_code */) 3068 base::PlatformFileError /* error_code */)
3068 3069
3069 // Get the directory's contents. 3070 // Get the directory's contents.
3070 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, 3071 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents,
3071 FilePath /* path */, 3072 FilePath /* path */,
3072 PepperDirContents, /* contents */ 3073 PepperDirContents, /* contents */
3073 base::PlatformFileError /* error_code */) 3074 base::PlatformFileError /* error_code */)
3074 3075
3075 IPC_END_MESSAGES(ViewHost) 3076 IPC_END_MESSAGES(ViewHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698