| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, | 365 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, |
| 366 std::wstring /* file_name */) | 366 std::wstring /* file_name */) |
| 367 | 367 |
| 368 // Used to instruct the RenderView to go into "view source" mode. | 368 // Used to instruct the RenderView to go into "view source" mode. |
| 369 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) | 369 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) |
| 370 | 370 |
| 371 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, | 371 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, |
| 372 int /* back_list_count */, | 372 int /* back_list_count */, |
| 373 int /* forward_list_count */) | 373 int /* forward_list_count */) |
| 374 | 374 |
| 375 // Retreive information from the MSAA DOM subtree, for accessibility purposes. |
| 376 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, |
| 377 ViewMsg_Accessibility_In_Params |
| 378 /* input parameters */, |
| 379 ViewHostMsg_Accessibility_Out_Params |
| 380 /* output parameters */) |
| 381 |
| 382 // Requests the renderer to clear cashed accessibility information. Takes an |
| 383 // id to clear a specific hashmap entry, and a bool; true clears all, false |
| 384 // does not. |
| 385 IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo, |
| 386 int /* iaccessible_id */, |
| 387 bool /* clear_all */) |
| 388 |
| 375 // Get all savable resource links from current webpage, include main | 389 // Get all savable resource links from current webpage, include main |
| 376 // frame and sub-frame. | 390 // frame and sub-frame. |
| 377 IPC_MESSAGE_ROUTED1(ViewMsg_GetAllSavableResourceLinksForCurrentPage, | 391 IPC_MESSAGE_ROUTED1(ViewMsg_GetAllSavableResourceLinksForCurrentPage, |
| 378 GURL /* url of page which is needed to save */) | 392 GURL /* url of page which is needed to save */) |
| 379 | 393 |
| 380 // Get html data by serializing all frames of current page with lists | 394 // Get html data by serializing all frames of current page with lists |
| 381 // which contain all resource links that have local copy. | 395 // which contain all resource links that have local copy. |
| 382 IPC_MESSAGE_ROUTED3(ViewMsg_GetSerializedHtmlDataForCurrentPageWithLocalLinks, | 396 IPC_MESSAGE_ROUTED3(ViewMsg_GetSerializedHtmlDataForCurrentPageWithLocalLinks, |
| 383 std::vector<std::wstring> /* urls which have local copy */
, | 397 std::vector<std::wstring> /* urls which have local copy */
, |
| 384 std::vector<std::wstring> /* paths of local copy */, | 398 std::vector<std::wstring> /* paths of local copy */, |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 // beforeunload or unload handler. | 1047 // beforeunload or unload handler. |
| 1034 IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, | 1048 IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, |
| 1035 bool /* has_listener */) | 1049 bool /* has_listener */) |
| 1036 | 1050 |
| 1037 // Returns the window location of the window this widget is embeded in. | 1051 // Returns the window location of the window this widget is embeded in. |
| 1038 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, | 1052 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, |
| 1039 HWND /* window */, | 1053 HWND /* window */, |
| 1040 gfx::Rect /* Out: Window location */) | 1054 gfx::Rect /* Out: Window location */) |
| 1041 | 1055 |
| 1042 IPC_END_MESSAGES(ViewHost) | 1056 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |