| 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 // Notifies the renderer of an AppCache status change. | 618 // Notifies the renderer of an AppCache status change. |
| 619 IPC_MESSAGE_CONTROL2(AppCacheMsg_StatusChanged, | 619 IPC_MESSAGE_CONTROL2(AppCacheMsg_StatusChanged, |
| 620 std::vector<int> /* host_ids */, | 620 std::vector<int> /* host_ids */, |
| 621 appcache::Status) | 621 appcache::Status) |
| 622 | 622 |
| 623 // Notifies the renderer of an AppCache event. | 623 // Notifies the renderer of an AppCache event. |
| 624 IPC_MESSAGE_CONTROL2(AppCacheMsg_EventRaised, | 624 IPC_MESSAGE_CONTROL2(AppCacheMsg_EventRaised, |
| 625 std::vector<int> /* host_ids */, | 625 std::vector<int> /* host_ids */, |
| 626 appcache::EventID) | 626 appcache::EventID) |
| 627 | 627 |
| 628 // Notifies the renderer of the fact that AppCache access was blocked. |
| 629 IPC_MESSAGE_CONTROL1(AppCacheMsg_ContentBlocked, |
| 630 int /* host_id */) |
| 631 |
| 628 // Reply to the ViewHostMsg_QueryFormFieldAutofill message with the | 632 // Reply to the ViewHostMsg_QueryFormFieldAutofill message with the |
| 629 // autofill suggestions. | 633 // autofill suggestions. |
| 630 IPC_MESSAGE_ROUTED4(ViewMsg_AutoFillSuggestionsReturned, | 634 IPC_MESSAGE_ROUTED4(ViewMsg_AutoFillSuggestionsReturned, |
| 631 int /* id of the request message */, | 635 int /* id of the request message */, |
| 632 std::vector<string16> /* names */, | 636 std::vector<string16> /* names */, |
| 633 std::vector<string16> /* labels */, | 637 std::vector<string16> /* labels */, |
| 634 int /* index of default suggestion */) | 638 int /* index of default suggestion */) |
| 635 | 639 |
| 636 // Reply to the ViewHostMsg_QueryFormFieldAutofill message with the | 640 // Reply to the ViewHostMsg_QueryFormFieldAutofill message with the |
| 637 // autocomplete suggestions. | 641 // autocomplete suggestions. |
| (...skipping 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2282 int /* render_view_id */, | 2286 int /* render_view_id */, |
| 2283 int /* bridge_id */) | 2287 int /* bridge_id */) |
| 2284 | 2288 |
| 2285 // The |render_view_id| and |bridge_id| requests Geolocation service to | 2289 // The |render_view_id| and |bridge_id| requests Geolocation service to |
| 2286 // resume. | 2290 // resume. |
| 2287 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2291 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
| 2288 int /* render_view_id */, | 2292 int /* render_view_id */, |
| 2289 int /* bridge_id */) | 2293 int /* bridge_id */) |
| 2290 | 2294 |
| 2291 IPC_END_MESSAGES(ViewHost) | 2295 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |