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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 std::vector<int> /* host_ids */, | 613 std::vector<int> /* host_ids */, |
614 appcache::EventID) | 614 appcache::EventID) |
615 | 615 |
616 // Notifies the renderer of an AppCache progress event. | 616 // Notifies the renderer of an AppCache progress event. |
617 IPC_MESSAGE_CONTROL4(AppCacheMsg_ProgressEventRaised, | 617 IPC_MESSAGE_CONTROL4(AppCacheMsg_ProgressEventRaised, |
618 std::vector<int> /* host_ids */, | 618 std::vector<int> /* host_ids */, |
619 GURL /* url being processed */, | 619 GURL /* url being processed */, |
620 int /* total */, | 620 int /* total */, |
621 int /* complete */) | 621 int /* complete */) |
622 | 622 |
| 623 // Notifies the renderer of an AppCache error event. |
| 624 IPC_MESSAGE_CONTROL2(AppCacheMsg_ErrorEventRaised, |
| 625 std::vector<int> /* host_ids */, |
| 626 std::string /* error_message */) |
| 627 |
623 // Notifies the renderer of an AppCache logging message. | 628 // Notifies the renderer of an AppCache logging message. |
624 IPC_MESSAGE_CONTROL3(AppCacheMsg_LogMessage, | 629 IPC_MESSAGE_CONTROL3(AppCacheMsg_LogMessage, |
625 int /* host_id */, | 630 int /* host_id */, |
626 int /* log_level */, | 631 int /* log_level */, |
627 std::string /* message */) | 632 std::string /* message */) |
628 | 633 |
629 // Notifies the renderer of the fact that AppCache access was blocked. | 634 // Notifies the renderer of the fact that AppCache access was blocked. |
630 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, | 635 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, |
631 int /* host_id */, | 636 int /* host_id */, |
632 GURL /* manifest_url */) | 637 GURL /* manifest_url */) |
(...skipping 1842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2475 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2480 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
2476 int /* render_view_id */, | 2481 int /* render_view_id */, |
2477 int /* bridge_id */) | 2482 int /* bridge_id */) |
2478 | 2483 |
2479 // Send the tree of accessibility data to the browser, where it's cached | 2484 // Send the tree of accessibility data to the browser, where it's cached |
2480 // in order to respond to OS accessibility queries immediately. | 2485 // in order to respond to OS accessibility queries immediately. |
2481 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2486 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
2482 webkit_glue::WebAccessibility) | 2487 webkit_glue::WebAccessibility) |
2483 | 2488 |
2484 IPC_END_MESSAGES(ViewHost) | 2489 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |