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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 | 377 |
378 // Used to instruct the RenderView to go into "view source" mode. | 378 // Used to instruct the RenderView to go into "view source" mode. |
379 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) | 379 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) |
380 | 380 |
381 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, | 381 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, |
382 int /* back_list_count */, | 382 int /* back_list_count */, |
383 int /* forward_list_count */) | 383 int /* forward_list_count */) |
384 | 384 |
385 // Retreive information from the MSAA DOM subtree, for accessibility purposes. | 385 // Retreive information from the MSAA DOM subtree, for accessibility purposes. |
386 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, | 386 IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo, |
387 AccessibilityInParams | 387 webkit_glue::WebAccessibility::InParams |
388 /* input parameters */, | 388 /* input parameters */, |
389 AccessibilityOutParams | 389 webkit_glue::WebAccessibility::OutParams |
390 /* output parameters */) | 390 /* output parameters */) |
391 | 391 |
392 // Requests the renderer to clear cashed accessibility information. Takes an | 392 // Requests the renderer to clear cashed accessibility information. Takes an |
393 // id to clear a specific hashmap entry, and a bool; true clears all, false | 393 // id to clear a specific hashmap entry, and a bool; true clears all, false |
394 // does not. | 394 // does not. |
395 IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo, | 395 IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo, |
396 int /* iaccessible_id */, | 396 int /* iaccessible_id */, |
397 bool /* clear_all */) | 397 bool /* clear_all */) |
398 | 398 |
399 // Get all savable resource links from current webpage, include main | 399 // Get all savable resource links from current webpage, include main |
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1219 | 1219 |
1220 // Wraps an IPC message that's destined to the worker on the renderer->browser | 1220 // Wraps an IPC message that's destined to the worker on the renderer->browser |
1221 // hop. | 1221 // hop. |
1222 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, | 1222 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, |
1223 IPC::Message /* message */) | 1223 IPC::Message /* message */) |
1224 | 1224 |
1225 // Notification when new feeds have been discovered on the page. | 1225 // Notification when new feeds have been discovered on the page. |
1226 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList, | 1226 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList, |
1227 ViewHostMsg_UpdateFeedList_Params) | 1227 ViewHostMsg_UpdateFeedList_Params) |
1228 IPC_END_MESSAGES(ViewHost) | 1228 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |