| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 // image at that location). | 158 // image at that location). |
| 159 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, | 159 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, |
| 160 int /* x */, | 160 int /* x */, |
| 161 int /* y */) | 161 int /* y */) |
| 162 | 162 |
| 163 // History system notification that the visited link database has been | 163 // History system notification that the visited link database has been |
| 164 // replaced. It has one SharedMemoryHandle argument consisting of the table | 164 // replaced. It has one SharedMemoryHandle argument consisting of the table |
| 165 // handle. This handle is valid in the context of the renderer | 165 // handle. This handle is valid in the context of the renderer |
| 166 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, base::SharedMemoryHandle) | 166 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, base::SharedMemoryHandle) |
| 167 | 167 |
| 168 // Notification that the Greasemonkey scripts have been updated. It has one | 168 // Notification that the user scripts have been updated. It has one |
| 169 // SharedMemoryHandle argument consisting of the pickled script data. This | 169 // SharedMemoryHandle argument consisting of the pickled script data. This |
| 170 // handle is valid in the context of the renderer. | 170 // handle is valid in the context of the renderer. |
| 171 IPC_MESSAGE_CONTROL1(ViewMsg_Greasemonkey_NewScripts, base::SharedMemoryHandle
) | 171 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_NewScripts, base::SharedMemoryHandle) |
| 172 | 172 |
| 173 // Sent when the user wants to search for a word on the page (find in page). | 173 // Sent when the user wants to search for a word on the page (find in page). |
| 174 // Request parameters are passed in as a FindInPageMsg_Request struct. | 174 // Request parameters are passed in as a FindInPageMsg_Request struct. |
| 175 IPC_MESSAGE_ROUTED1(ViewMsg_Find, FindInPageRequest) | 175 IPC_MESSAGE_ROUTED1(ViewMsg_Find, FindInPageRequest) |
| 176 | 176 |
| 177 // Sent when the headers are available for a resource request. | 177 // Sent when the headers are available for a resource request. |
| 178 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_ReceivedResponse, | 178 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_ReceivedResponse, |
| 179 int /* request_id */, | 179 int /* request_id */, |
| 180 ViewMsg_Resource_ResponseHead) | 180 ViewMsg_Resource_ResponseHead) |
| 181 | 181 |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 #endif // defined(OS_WIN) | 1106 #endif // defined(OS_WIN) |
| 1107 | 1107 |
| 1108 // Queries the browser for suggestion for autofill in a form input field. | 1108 // Queries the browser for suggestion for autofill in a form input field. |
| 1109 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, | 1109 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, |
| 1110 std::wstring /* field name */, | 1110 std::wstring /* field name */, |
| 1111 std::wstring /* user entered text */, | 1111 std::wstring /* user entered text */, |
| 1112 int64 /* id of the text input field */, | 1112 int64 /* id of the text input field */, |
| 1113 int /* id of this message */) | 1113 int /* id of this message */) |
| 1114 | 1114 |
| 1115 IPC_END_MESSAGES(ViewHost) | 1115 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |