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 2065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2076 | 2076 |
2077 // Gets resource list from appcache synchronously. | 2077 // Gets resource list from appcache synchronously. |
2078 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_GetResourceList, | 2078 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_GetResourceList, |
2079 int /* host_id in*/, | 2079 int /* host_id in*/, |
2080 std::vector<appcache::AppCacheResourceInfo> | 2080 std::vector<appcache::AppCacheResourceInfo> |
2081 /* resources out */) | 2081 /* resources out */) |
2082 | 2082 |
2083 // Queries the browser for AutoFill suggestions for a form input field. | 2083 // Queries the browser for AutoFill suggestions for a form input field. |
2084 IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill, | 2084 IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill, |
2085 int /* id of this message */, | 2085 int /* id of this message */, |
2086 bool /* form_autofilled */, | 2086 bool /* field autofilled */, |
2087 webkit_glue::FormField /* the form field */) | 2087 webkit_glue::FormField /* the form field */) |
2088 | 2088 |
2089 // Sent when the popup with AutoFill suggestions for a form is shown. | 2089 // Sent when the popup with AutoFill suggestions for a form is shown. |
2090 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions) | 2090 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidShowAutoFillSuggestions) |
2091 | 2091 |
2092 // Instructs the browser to fill in the values for a form using AutoFill | 2092 // Instructs the browser to fill in the values for a form using AutoFill |
2093 // profile data. | 2093 // profile data. |
2094 IPC_MESSAGE_ROUTED3(ViewHostMsg_FillAutoFillFormData, | 2094 IPC_MESSAGE_ROUTED3(ViewHostMsg_FillAutoFillFormData, |
2095 int /* id of this message */, | 2095 int /* id of this message */, |
2096 webkit_glue::FormData /* the form */, | 2096 webkit_glue::FormData /* the form */, |
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3064 base::PlatformFileInfo, /* info */ | 3064 base::PlatformFileInfo, /* info */ |
3065 base::PlatformFileError /* error_code */) | 3065 base::PlatformFileError /* error_code */) |
3066 | 3066 |
3067 // Get the directory's contents. | 3067 // Get the directory's contents. |
3068 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 3068 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
3069 FilePath /* path */, | 3069 FilePath /* path */, |
3070 PepperDirContents, /* contents */ | 3070 PepperDirContents, /* contents */ |
3071 base::PlatformFileError /* error_code */) | 3071 base::PlatformFileError /* error_code */) |
3072 | 3072 |
3073 IPC_END_MESSAGES(ViewHost) | 3073 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |