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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 // image at that location). | 148 // image at that location). |
149 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, | 149 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, |
150 int /* x */, | 150 int /* x */, |
151 int /* y */) | 151 int /* y */) |
152 | 152 |
153 // History system notification that the visited link database has been | 153 // History system notification that the visited link database has been |
154 // replaced. It has one SharedMemoryHandle argument consisting of the table | 154 // replaced. It has one SharedMemoryHandle argument consisting of the table |
155 // handle. This handle is valid in the context of the renderer | 155 // handle. This handle is valid in the context of the renderer |
156 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, SharedMemoryHandle) | 156 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, SharedMemoryHandle) |
157 | 157 |
| 158 // Notification that the Greasemonkey scripts have been updated. It has one |
| 159 // SharedMemoryHandle argument consisting of the pickled script data. This |
| 160 // handle is valid in the context of the renderer. |
| 161 IPC_MESSAGE_CONTROL1(ViewMsg_Greasemonkey_NewScripts, SharedMemoryHandle) |
| 162 |
158 // Sent when the user wants to search for a word on the page (find in page). | 163 // Sent when the user wants to search for a word on the page (find in page). |
159 // Request parameters are passed in as a FindInPageMsg_Request struct. | 164 // Request parameters are passed in as a FindInPageMsg_Request struct. |
160 IPC_MESSAGE_ROUTED1(ViewMsg_Find, FindInPageRequest) | 165 IPC_MESSAGE_ROUTED1(ViewMsg_Find, FindInPageRequest) |
161 | 166 |
162 // Sent when the headers are available for a resource request. | 167 // Sent when the headers are available for a resource request. |
163 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_ReceivedResponse, | 168 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_ReceivedResponse, |
164 int /* request_id */, | 169 int /* request_id */, |
165 ViewMsg_Resource_ResponseHead) | 170 ViewMsg_Resource_ResponseHead) |
166 | 171 |
167 // Sent as upload progress is being made | 172 // Sent as upload progress is being made |
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1047 // beforeunload or unload handler. | 1052 // beforeunload or unload handler. |
1048 IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, | 1053 IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, |
1049 bool /* has_listener */) | 1054 bool /* has_listener */) |
1050 | 1055 |
1051 // Returns the window location of the window this widget is embeded in. | 1056 // Returns the window location of the window this widget is embeded in. |
1052 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, | 1057 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, |
1053 HWND /* window */, | 1058 HWND /* window */, |
1054 gfx::Rect /* Out: Window location */) | 1059 gfx::Rect /* Out: Window location */) |
1055 | 1060 |
1056 IPC_END_MESSAGES(ViewHost) | 1061 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |