| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 // image at that location). | 163 // image at that location). |
| 164 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, | 164 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, |
| 165 int /* x */, | 165 int /* x */, |
| 166 int /* y */) | 166 int /* y */) |
| 167 | 167 |
| 168 // History system notification that the visited link database has been | 168 // History system notification that the visited link database has been |
| 169 // replaced. It has one SharedMemoryHandle argument consisting of the table | 169 // replaced. It has one SharedMemoryHandle argument consisting of the table |
| 170 // handle. This handle is valid in the context of the renderer | 170 // handle. This handle is valid in the context of the renderer |
| 171 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, base::SharedMemoryHandle) | 171 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, base::SharedMemoryHandle) |
| 172 | 172 |
| 173 // History system notification that a link has been added and the link |
| 174 // coloring state for the given hash must be re-calculated. |
| 175 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>) |
| 176 |
| 177 // History system notification that one or more history items have been |
| 178 // deleted, which at this point means that all link coloring state must be |
| 179 // re-calculated. |
| 180 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset) |
| 181 |
| 173 // Notification that the user scripts have been updated. It has one | 182 // Notification that the user scripts have been updated. It has one |
| 174 // SharedMemoryHandle argument consisting of the pickled script data. This | 183 // SharedMemoryHandle argument consisting of the pickled script data. This |
| 175 // handle is valid in the context of the renderer. | 184 // handle is valid in the context of the renderer. |
| 176 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_UpdatedScripts, | 185 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_UpdatedScripts, |
| 177 base::SharedMemoryHandle) | 186 base::SharedMemoryHandle) |
| 178 | 187 |
| 179 // Sent when the user wants to search for a word on the page (find in page). | 188 // Sent when the user wants to search for a word on the page (find in page). |
| 180 IPC_MESSAGE_ROUTED3(ViewMsg_Find, | 189 IPC_MESSAGE_ROUTED3(ViewMsg_Find, |
| 181 int /* request_id */, | 190 int /* request_id */, |
| 182 string16 /* search_text */, | 191 string16 /* search_text */, |
| (...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 // web resource. |error_message| is a user-readable explanation of what | 1448 // web resource. |error_message| is a user-readable explanation of what |
| 1440 // went wrong. | 1449 // went wrong. |
| 1441 IPC_MESSAGE_CONTROL1(UtilityHostMsg_UnpackWebResource_Failed, | 1450 IPC_MESSAGE_CONTROL1(UtilityHostMsg_UnpackWebResource_Failed, |
| 1442 std::string /* error_message, if any */) | 1451 std::string /* error_message, if any */) |
| 1443 | 1452 |
| 1444 // Sent by the renderer process to acknowledge receipt of a | 1453 // Sent by the renderer process to acknowledge receipt of a |
| 1445 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. | 1454 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. |
| 1446 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) | 1455 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) |
| 1447 | 1456 |
| 1448 IPC_END_MESSAGES(ViewHost) | 1457 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |