| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 int /* One of PageZoom::Function */) | 310 int /* One of PageZoom::Function */) |
| 311 | 311 |
| 312 // Insert text in the currently focused input area. | 312 // Insert text in the currently focused input area. |
| 313 IPC_MESSAGE_ROUTED1(ViewMsg_InsertText, | 313 IPC_MESSAGE_ROUTED1(ViewMsg_InsertText, |
| 314 string16 /* text */) | 314 string16 /* text */) |
| 315 | 315 |
| 316 // Change encoding of page in the renderer. | 316 // Change encoding of page in the renderer. |
| 317 IPC_MESSAGE_ROUTED1(ViewMsg_SetPageEncoding, | 317 IPC_MESSAGE_ROUTED1(ViewMsg_SetPageEncoding, |
| 318 std::string /*new encoding name*/) | 318 std::string /*new encoding name*/) |
| 319 | 319 |
| 320 // Reset encoding of page in the renderer back to default. |
| 321 IPC_MESSAGE_ROUTED0(ViewMsg_ResetPageEncodingToDefault) |
| 322 |
| 320 // Requests the renderer to reserve a range of page ids. | 323 // Requests the renderer to reserve a range of page ids. |
| 321 IPC_MESSAGE_ROUTED1(ViewMsg_ReservePageIDRange, | 324 IPC_MESSAGE_ROUTED1(ViewMsg_ReservePageIDRange, |
| 322 int /* size_of_range */) | 325 int /* size_of_range */) |
| 323 | 326 |
| 324 // Fill a form with data and optionally submit it | 327 // Fill a form with data and optionally submit it |
| 325 IPC_MESSAGE_ROUTED1(ViewMsg_FormFill, | 328 IPC_MESSAGE_ROUTED1(ViewMsg_FormFill, |
| 326 FormData /* form */) | 329 FormData /* form */) |
| 327 | 330 |
| 328 // Fill a password form and prepare field autocomplete for multiple | 331 // Fill a password form and prepare field autocomplete for multiple |
| 329 // matching logins. | 332 // matching logins. |
| (...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1692 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, | 1695 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, |
| 1693 FilePath /* the name of the file */, | 1696 FilePath /* the name of the file */, |
| 1694 int32 /* a unique message ID */) | 1697 int32 /* a unique message ID */) |
| 1695 | 1698 |
| 1696 // Asks the browser process to return the size of a DB file | 1699 // Asks the browser process to return the size of a DB file |
| 1697 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, | 1700 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, |
| 1698 FilePath /* the name of the file */, | 1701 FilePath /* the name of the file */, |
| 1699 int32 /* a unique message ID */) | 1702 int32 /* a unique message ID */) |
| 1700 | 1703 |
| 1701 IPC_END_MESSAGES(ViewHost) | 1704 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |