| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 IPC_MESSAGE_ROUTED1(ViewMsg_StopFinding, bool /* clear_selection */) | 137 IPC_MESSAGE_ROUTED1(ViewMsg_StopFinding, bool /* clear_selection */) |
| 138 | 138 |
| 139 // These messages are typically generated from context menus and request the | 139 // These messages are typically generated from context menus and request the |
| 140 // renderer to apply the specified operation to the current selection. | 140 // renderer to apply the specified operation to the current selection. |
| 141 IPC_MESSAGE_ROUTED0(ViewMsg_Undo) | 141 IPC_MESSAGE_ROUTED0(ViewMsg_Undo) |
| 142 IPC_MESSAGE_ROUTED0(ViewMsg_Redo) | 142 IPC_MESSAGE_ROUTED0(ViewMsg_Redo) |
| 143 IPC_MESSAGE_ROUTED0(ViewMsg_Cut) | 143 IPC_MESSAGE_ROUTED0(ViewMsg_Cut) |
| 144 IPC_MESSAGE_ROUTED0(ViewMsg_Copy) | 144 IPC_MESSAGE_ROUTED0(ViewMsg_Copy) |
| 145 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) | 145 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) |
| 146 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, std::wstring) | 146 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, std::wstring) |
| 147 IPC_MESSAGE_ROUTED0(ViewMsg_ToggleSpellCheck) |
| 147 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) | 148 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) |
| 148 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) | 149 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) |
| 149 | 150 |
| 150 // Copies the image at location x, y to the clipboard (if there indeed is an | 151 // Copies the image at location x, y to the clipboard (if there indeed is an |
| 151 // image at that location). | 152 // image at that location). |
| 152 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, | 153 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, |
| 153 int /* x */, | 154 int /* x */, |
| 154 int /* y */) | 155 int /* y */) |
| 155 | 156 |
| 156 // History system notification that the visited link database has been | 157 // History system notification that the visited link database has been |
| (...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1085 gfx::Rect /* Out: Window location */) | 1086 gfx::Rect /* Out: Window location */) |
| 1086 | 1087 |
| 1087 // Queries the browser for suggestion for autofill in a form input field. | 1088 // Queries the browser for suggestion for autofill in a form input field. |
| 1088 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, | 1089 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, |
| 1089 std::wstring /* field name */, | 1090 std::wstring /* field name */, |
| 1090 std::wstring /* user entered text */, | 1091 std::wstring /* user entered text */, |
| 1091 int64 /* id of the text input field */, | 1092 int64 /* id of the text input field */, |
| 1092 int /* id of this message */) | 1093 int /* id of this message */) |
| 1093 | 1094 |
| 1094 IPC_END_MESSAGES(ViewHost) | 1095 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |