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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 std::vector<int> /* host_ids */, | 626 std::vector<int> /* host_ids */, |
627 appcache::EventID) | 627 appcache::EventID) |
628 | 628 |
629 // Notifies the renderer of an AppCache progress event. | 629 // Notifies the renderer of an AppCache progress event. |
630 IPC_MESSAGE_CONTROL4(AppCacheMsg_ProgressEventRaised, | 630 IPC_MESSAGE_CONTROL4(AppCacheMsg_ProgressEventRaised, |
631 std::vector<int> /* host_ids */, | 631 std::vector<int> /* host_ids */, |
632 GURL /* url being processed */, | 632 GURL /* url being processed */, |
633 int /* total */, | 633 int /* total */, |
634 int /* complete */) | 634 int /* complete */) |
635 | 635 |
| 636 // Notifies the renderer of an AppCache logging message. |
| 637 IPC_MESSAGE_CONTROL3(AppCacheMsg_LogMessage, |
| 638 int /* host_id */, |
| 639 int /* log_level */, |
| 640 std::string /* message */) |
| 641 |
636 // Notifies the renderer of the fact that AppCache access was blocked. | 642 // Notifies the renderer of the fact that AppCache access was blocked. |
637 IPC_MESSAGE_CONTROL1(AppCacheMsg_ContentBlocked, | 643 IPC_MESSAGE_CONTROL1(AppCacheMsg_ContentBlocked, |
638 int /* host_id */) | 644 int /* host_id */) |
639 | 645 |
640 // Reply to the ViewHostMsg_QueryFormFieldAutoFill message with the | 646 // Reply to the ViewHostMsg_QueryFormFieldAutoFill message with the |
641 // AutoFill suggestions. | 647 // AutoFill suggestions. |
642 IPC_MESSAGE_ROUTED3(ViewMsg_AutoFillSuggestionsReturned, | 648 IPC_MESSAGE_ROUTED3(ViewMsg_AutoFillSuggestionsReturned, |
643 int /* id of the request message */, | 649 int /* id of the request message */, |
644 std::vector<string16> /* names */, | 650 std::vector<string16> /* names */, |
645 std::vector<string16> /* labels */) | 651 std::vector<string16> /* labels */) |
(...skipping 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2494 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2500 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
2495 int /* render_view_id */, | 2501 int /* render_view_id */, |
2496 int /* bridge_id */) | 2502 int /* bridge_id */) |
2497 | 2503 |
2498 // Send the tree of accessibility data to the browser, where it's cached | 2504 // Send the tree of accessibility data to the browser, where it's cached |
2499 // in order to respond to OS accessibility queries immediately. | 2505 // in order to respond to OS accessibility queries immediately. |
2500 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2506 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
2501 webkit_glue::WebAccessibility) | 2507 webkit_glue::WebAccessibility) |
2502 | 2508 |
2503 IPC_END_MESSAGES(ViewHost) | 2509 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |