| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 // pages containing plugins. | 501 // pages containing plugins. |
| 502 IPC_MESSAGE_CONTROL1(ViewMsg_PurgePluginListCache, | 502 IPC_MESSAGE_CONTROL1(ViewMsg_PurgePluginListCache, |
| 503 bool /* reload_pages */) | 503 bool /* reload_pages */) |
| 504 | 504 |
| 505 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, | 505 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, |
| 506 std::vector<FilePath> /* selected files */) | 506 std::vector<FilePath> /* selected files */) |
| 507 | 507 |
| 508 // Used to instruct the RenderView to go into "view source" mode. | 508 // Used to instruct the RenderView to go into "view source" mode. |
| 509 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) | 509 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) |
| 510 | 510 |
| 511 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, | |
| 512 int /* back_list_count */, | |
| 513 int /* forward_list_count */) | |
| 514 | |
| 515 // Retreive information from the MSAA DOM subtree, for accessibility purposes. | 511 // Retreive information from the MSAA DOM subtree, for accessibility purposes. |
| 516 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, | 512 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, |
| 517 webkit_glue::WebAccessibility::InParams | 513 webkit_glue::WebAccessibility::InParams |
| 518 /* input parameters */, | 514 /* input parameters */, |
| 519 webkit_glue::WebAccessibility::OutParams | 515 webkit_glue::WebAccessibility::OutParams |
| 520 /* output parameters */) | 516 /* output parameters */) |
| 521 | 517 |
| 522 // Requests the renderer to clear cashed accessibility information. Takes an | 518 // Requests the renderer to clear cashed accessibility information. Takes an |
| 523 // id to clear a specific hashmap entry, and a bool; true clears all, false | 519 // id to clear a specific hashmap entry, and a bool; true clears all, false |
| 524 // does not. | 520 // does not. |
| (...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2273 int /* render_view_id */, | 2269 int /* render_view_id */, |
| 2274 int /* bridge_id */) | 2270 int /* bridge_id */) |
| 2275 | 2271 |
| 2276 // The |render_view_id| and |bridge_id| requests Geolocation service to | 2272 // The |render_view_id| and |bridge_id| requests Geolocation service to |
| 2277 // resume. | 2273 // resume. |
| 2278 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2274 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
| 2279 int /* render_view_id */, | 2275 int /* render_view_id */, |
| 2280 int /* bridge_id */) | 2276 int /* bridge_id */) |
| 2281 | 2277 |
| 2282 IPC_END_MESSAGES(ViewHost) | 2278 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |