OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, | 399 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, |
400 webkit_glue::WebAccessibility::InParams | 400 webkit_glue::WebAccessibility::InParams |
401 /* input parameters */, | 401 /* input parameters */, |
402 webkit_glue::WebAccessibility::OutParams | 402 webkit_glue::WebAccessibility::OutParams |
403 /* output parameters */) | 403 /* output parameters */) |
404 | 404 |
405 // Requests the renderer to clear cashed accessibility information. Takes an | 405 // Requests the renderer to clear cashed accessibility information. Takes an |
406 // id to clear a specific hashmap entry, and a bool; true clears all, false | 406 // id to clear a specific hashmap entry, and a bool; true clears all, false |
407 // does not. | 407 // does not. |
408 IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo, | 408 IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo, |
409 int /* iaccessible_id */, | 409 int /* accessibility object id */, |
410 bool /* clear_all */) | 410 bool /* clear_all */) |
411 | 411 |
412 // Get all savable resource links from current webpage, include main | 412 // Get all savable resource links from current webpage, include main |
413 // frame and sub-frame. | 413 // frame and sub-frame. |
414 IPC_MESSAGE_ROUTED1(ViewMsg_GetAllSavableResourceLinksForCurrentPage, | 414 IPC_MESSAGE_ROUTED1(ViewMsg_GetAllSavableResourceLinksForCurrentPage, |
415 GURL /* url of page which is needed to save */) | 415 GURL /* url of page which is needed to save */) |
416 | 416 |
417 // Get html data by serializing all frames of current page with lists | 417 // Get html data by serializing all frames of current page with lists |
418 // which contain all resource links that have local copy. | 418 // which contain all resource links that have local copy. |
419 IPC_MESSAGE_ROUTED3(ViewMsg_GetSerializedHtmlDataForCurrentPageWithLocalLinks, | 419 IPC_MESSAGE_ROUTED3(ViewMsg_GetSerializedHtmlDataForCurrentPageWithLocalLinks, |
(...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1365 // Send a message to an extension process. The handle is the value returned | 1365 // Send a message to an extension process. The handle is the value returned |
1366 // by ViewHostMsg_OpenChannelToExtension. | 1366 // by ViewHostMsg_OpenChannelToExtension. |
1367 IPC_MESSAGE_ROUTED2(ViewHostMsg_ExtensionPostMessage, | 1367 IPC_MESSAGE_ROUTED2(ViewHostMsg_ExtensionPostMessage, |
1368 int /* port_id */, | 1368 int /* port_id */, |
1369 std::string /* message */) | 1369 std::string /* message */) |
1370 | 1370 |
1371 // Message to show a popup menu using native cocoa controls (Mac only). | 1371 // Message to show a popup menu using native cocoa controls (Mac only). |
1372 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, | 1372 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, |
1373 ViewHostMsg_ShowPopup_Params) | 1373 ViewHostMsg_ShowPopup_Params) |
1374 | 1374 |
| 1375 // Sent as a result of a focus change in the renderer (if accessibility is |
| 1376 // enabled), to notify the browser side that its accessibility focus needs to |
| 1377 // change as well. Takes the id of the accessibility object that now has |
| 1378 // focus. |
| 1379 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityFocusChange, |
| 1380 int /* accessibility object id */) |
| 1381 |
1375 IPC_END_MESSAGES(ViewHost) | 1382 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |