OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy) | 454 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy) |
455 | 455 |
456 // Serialized history item state to store in the navigation entry. | 456 // Serialized history item state to store in the navigation entry. |
457 IPC_STRUCT_MEMBER(std::string, content_state) | 457 IPC_STRUCT_MEMBER(std::string, content_state) |
458 IPC_STRUCT_END() | 458 IPC_STRUCT_END() |
459 | 459 |
460 IPC_STRUCT_BEGIN(ViewHostMsg_AccessibilityNotification_Params) | 460 IPC_STRUCT_BEGIN(ViewHostMsg_AccessibilityNotification_Params) |
461 // Type of notification. | 461 // Type of notification. |
462 IPC_STRUCT_MEMBER(ViewHostMsg_AccEvent::Value, notification_type) | 462 IPC_STRUCT_MEMBER(ViewHostMsg_AccEvent::Value, notification_type) |
463 | 463 |
| 464 // ID of the node that the notification applies to. |
| 465 IPC_STRUCT_MEMBER(int, id) |
| 466 |
464 // The accessibility node tree. | 467 // The accessibility node tree. |
465 IPC_STRUCT_MEMBER(webkit_glue::WebAccessibility, acc_obj) | 468 IPC_STRUCT_MEMBER(webkit_glue::WebAccessibility, acc_tree) |
| 469 |
| 470 // Whether children are included in this tree, otherwise it's just an |
| 471 // update to this one node and existing children are left in place. |
| 472 IPC_STRUCT_MEMBER(bool, includes_children) |
466 IPC_STRUCT_END() | 473 IPC_STRUCT_END() |
467 | 474 |
468 | 475 |
469 IPC_STRUCT_BEGIN(ViewHostMsg_RunFileChooser_Params) | 476 IPC_STRUCT_BEGIN(ViewHostMsg_RunFileChooser_Params) |
470 IPC_STRUCT_MEMBER(ViewHostMsg_RunFileChooser_Mode::Value, mode) | 477 IPC_STRUCT_MEMBER(ViewHostMsg_RunFileChooser_Mode::Value, mode) |
471 | 478 |
472 // Title to be used for the dialog. This may be empty for the default title, | 479 // Title to be used for the dialog. This may be empty for the default title, |
473 // which will be either "Open" or "Save" depending on the mode. | 480 // which will be either "Open" or "Save" depending on the mode. |
474 IPC_STRUCT_MEMBER(string16, title) | 481 IPC_STRUCT_MEMBER(string16, title) |
475 | 482 |
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1946 | 1953 |
1947 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1954 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1948 // being sent back. | 1955 // being sent back. |
1949 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1956 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1950 | 1957 |
1951 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1958 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1952 // whenever the mouse is unlocked (which may or may not be caused by | 1959 // whenever the mouse is unlocked (which may or may not be caused by |
1953 // ViewHostMsg_UnlockMouse). | 1960 // ViewHostMsg_UnlockMouse). |
1954 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1961 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
1955 | 1962 |
OLD | NEW |