| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // Chrome-specific IPC messages for extensions. | 5 // Chrome-specific IPC messages for extensions. |
| 6 // Extension-related messages that aren't specific to Chrome live in | 6 // Extension-related messages that aren't specific to Chrome live in |
| 7 // extensions/common/extension_messages.h. | 7 // extensions/common/extension_messages.h. |
| 8 // | 8 // |
| 9 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 IPC_STRUCT_TRAITS_MEMBER(role) | 43 IPC_STRUCT_TRAITS_MEMBER(role) |
| 44 IPC_STRUCT_TRAITS_MEMBER(state) | 44 IPC_STRUCT_TRAITS_MEMBER(state) |
| 45 IPC_STRUCT_TRAITS_MEMBER(actions) | 45 IPC_STRUCT_TRAITS_MEMBER(actions) |
| 46 IPC_STRUCT_TRAITS_MEMBER(location) | 46 IPC_STRUCT_TRAITS_MEMBER(location) |
| 47 IPC_STRUCT_TRAITS_MEMBER(transform) | 47 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 48 IPC_STRUCT_TRAITS_MEMBER(string_attributes) | 48 IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| 49 IPC_STRUCT_TRAITS_MEMBER(int_attributes) | 49 IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| 50 IPC_STRUCT_TRAITS_MEMBER(float_attributes) | 50 IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| 51 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 51 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| 52 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 52 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
| 53 IPC_STRUCT_TRAITS_MEMBER(stringlist_attributes) |
| 53 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 54 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| 54 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 55 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
| 55 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 56 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 56 IPC_STRUCT_TRAITS_END() | 57 IPC_STRUCT_TRAITS_END() |
| 57 | 58 |
| 58 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) | 59 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) |
| 59 IPC_STRUCT_TRAITS_MEMBER(tree_id) | 60 IPC_STRUCT_TRAITS_MEMBER(tree_id) |
| 60 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) | 61 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) |
| 61 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) | 62 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
| 62 IPC_STRUCT_TRAITS_MEMBER(url) | 63 IPC_STRUCT_TRAITS_MEMBER(url) |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent, | 119 IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent, |
| 119 ExtensionMsg_AccessibilityEventParams, | 120 ExtensionMsg_AccessibilityEventParams, |
| 120 bool /* is_active_profile */) | 121 bool /* is_active_profile */) |
| 121 | 122 |
| 122 // Forward an accessibility location change message to an extension process | 123 // Forward an accessibility location change message to an extension process |
| 123 // where an extension is using the automation API to listen for | 124 // where an extension is using the automation API to listen for |
| 124 // accessibility events. | 125 // accessibility events. |
| 125 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange, | 126 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange, |
| 126 ExtensionMsg_AccessibilityLocationChangeParams) | 127 ExtensionMsg_AccessibilityLocationChangeParams) |
| 127 | 128 |
| OLD | NEW |