OLD | NEW |
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 2073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2084 int /* host_id */, | 2084 int /* host_id */, |
2085 bool /* success */) | 2085 bool /* success */) |
2086 | 2086 |
2087 // Gets resource list from appcache synchronously. | 2087 // Gets resource list from appcache synchronously. |
2088 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_GetResourceList, | 2088 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_GetResourceList, |
2089 int /* host_id in*/, | 2089 int /* host_id in*/, |
2090 std::vector<appcache::AppCacheResourceInfo> | 2090 std::vector<appcache::AppCacheResourceInfo> |
2091 /* resources out */) | 2091 /* resources out */) |
2092 | 2092 |
2093 // Queries the browser for AutoFill suggestions for a form input field. | 2093 // Queries the browser for AutoFill suggestions for a form input field. |
2094 IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill, | 2094 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutoFill, |
2095 int /* id of this message */, | 2095 int /* id of this message */, |
2096 bool /* form_autofilled */, | 2096 bool /* field autofilled */, |
2097 webkit_glue::FormField /* the form field */) | 2097 webkit_glue::FormField /* the form field */, |
| 2098 bool /* autofill disabled */) |
2098 | 2099 |
2099 // Sent when the popup with AutoFill suggestions for a form is shown. | 2100 // Sent when the popup with AutoFill suggestions for a form is shown. |
2100 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions) | 2101 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions) |
2101 | 2102 |
2102 // Instructs the browser to fill in the values for a form using AutoFill | 2103 // Instructs the browser to fill in the values for a form using AutoFill |
2103 // profile data. | 2104 // profile data. |
2104 IPC_MESSAGE_ROUTED3(ViewHostMsg_FillAutoFillFormData, | 2105 IPC_MESSAGE_ROUTED3(ViewHostMsg_FillAutoFillFormData, |
2105 int /* id of this message */, | 2106 int /* id of this message */, |
2106 webkit_glue::FormData /* the form */, | 2107 webkit_glue::FormData /* the form */, |
2107 int /* profile unique ID */) | 2108 int /* profile unique ID */) |
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3074 base::PlatformFileInfo, /* info */ | 3075 base::PlatformFileInfo, /* info */ |
3075 base::PlatformFileError /* error_code */) | 3076 base::PlatformFileError /* error_code */) |
3076 | 3077 |
3077 // Get the directory's contents. | 3078 // Get the directory's contents. |
3078 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 3079 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
3079 FilePath /* path */, | 3080 FilePath /* path */, |
3080 PepperDirContents, /* contents */ | 3081 PepperDirContents, /* contents */ |
3081 base::PlatformFileError /* error_code */) | 3082 base::PlatformFileError /* error_code */) |
3082 | 3083 |
3083 IPC_END_MESSAGES(ViewHost) | 3084 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |