| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 int /* log_level */, | 634 int /* log_level */, |
| 635 std::string /* message */) | 635 std::string /* message */) |
| 636 | 636 |
| 637 // Notifies the renderer of the fact that AppCache access was blocked. | 637 // Notifies the renderer of the fact that AppCache access was blocked. |
| 638 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, | 638 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, |
| 639 int /* host_id */, | 639 int /* host_id */, |
| 640 GURL /* manifest_url */) | 640 GURL /* manifest_url */) |
| 641 | 641 |
| 642 // Reply to the ViewHostMsg_QueryFormFieldAutoFill message with the | 642 // Reply to the ViewHostMsg_QueryFormFieldAutoFill message with the |
| 643 // AutoFill suggestions. | 643 // AutoFill suggestions. |
| 644 IPC_MESSAGE_ROUTED4(ViewMsg_AutoFillSuggestionsReturned, | 644 IPC_MESSAGE_ROUTED5(ViewMsg_AutoFillSuggestionsReturned, |
| 645 int /* id of the request message */, | 645 int /* id of the request message */, |
| 646 std::vector<string16> /* names */, | 646 std::vector<string16> /* names */, |
| 647 std::vector<string16> /* labels */, | 647 std::vector<string16> /* labels */, |
| 648 std::vector<string16> /* icons */, |
| 648 std::vector<int> /* unique_ids */) | 649 std::vector<int> /* unique_ids */) |
| 649 | 650 |
| 650 // Reply to the ViewHostMsg_FillAutoFillFormData message with the | 651 // Reply to the ViewHostMsg_FillAutoFillFormData message with the |
| 651 // AutoFill form data. | 652 // AutoFill form data. |
| 652 IPC_MESSAGE_ROUTED2(ViewMsg_AutoFillFormDataFilled, | 653 IPC_MESSAGE_ROUTED2(ViewMsg_AutoFillFormDataFilled, |
| 653 int /* id of the request message */, | 654 int /* id of the request message */, |
| 654 webkit_glue::FormData /* form data */) | 655 webkit_glue::FormData /* form data */) |
| 655 | 656 |
| 656 // Sent by the Browser process to alert a window about whether a it should | 657 // Sent by the Browser process to alert a window about whether a it should |
| 657 // allow a scripted window.close(). The renderer assumes every new window is a | 658 // allow a scripted window.close(). The renderer assumes every new window is a |
| (...skipping 1871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2529 // Send the tree of accessibility data to the browser, where it's cached | 2530 // Send the tree of accessibility data to the browser, where it's cached |
| 2530 // in order to respond to OS accessibility queries immediately. | 2531 // in order to respond to OS accessibility queries immediately. |
| 2531 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2532 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
| 2532 webkit_glue::WebAccessibility) | 2533 webkit_glue::WebAccessibility) |
| 2533 | 2534 |
| 2534 // Notifies the TabContents that the content being displayed is PDF. | 2535 // Notifies the TabContents that the content being displayed is PDF. |
| 2535 // This allows the browser to handle things such as zooming differently. | 2536 // This allows the browser to handle things such as zooming differently. |
| 2536 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) | 2537 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) |
| 2537 | 2538 |
| 2538 IPC_END_MESSAGES(ViewHost) | 2539 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |