| 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 27 matching lines...) Expand all Loading... |
| 38 IPC_STRUCT_TRAITS_MEMBER(transform) | 38 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 39 IPC_STRUCT_TRAITS_MEMBER(string_attributes) | 39 IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| 40 IPC_STRUCT_TRAITS_MEMBER(int_attributes) | 40 IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| 41 IPC_STRUCT_TRAITS_MEMBER(float_attributes) | 41 IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| 42 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 42 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| 43 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 43 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
| 44 IPC_STRUCT_TRAITS_MEMBER(stringlist_attributes) | 44 IPC_STRUCT_TRAITS_MEMBER(stringlist_attributes) |
| 45 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 45 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| 46 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 46 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
| 47 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 47 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 48 IPC_STRUCT_TRAITS_MEMBER(is_fixed_positioned) |
| 48 IPC_STRUCT_TRAITS_END() | 49 IPC_STRUCT_TRAITS_END() |
| 49 | 50 |
| 50 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) | 51 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) |
| 51 IPC_STRUCT_TRAITS_MEMBER(tree_id) | 52 IPC_STRUCT_TRAITS_MEMBER(tree_id) |
| 52 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) | 53 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) |
| 53 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) | 54 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
| 54 IPC_STRUCT_TRAITS_MEMBER(url) | 55 IPC_STRUCT_TRAITS_MEMBER(url) |
| 55 IPC_STRUCT_TRAITS_MEMBER(title) | 56 IPC_STRUCT_TRAITS_MEMBER(title) |
| 56 IPC_STRUCT_TRAITS_MEMBER(mimetype) | 57 IPC_STRUCT_TRAITS_MEMBER(mimetype) |
| 57 IPC_STRUCT_TRAITS_MEMBER(doctype) | 58 IPC_STRUCT_TRAITS_MEMBER(doctype) |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // extension is using the automation API to listen for accessibility events. | 110 // extension is using the automation API to listen for accessibility events. |
| 110 IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent, | 111 IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent, |
| 111 ExtensionMsg_AccessibilityEventParams, | 112 ExtensionMsg_AccessibilityEventParams, |
| 112 bool /* is_active_profile */) | 113 bool /* is_active_profile */) |
| 113 | 114 |
| 114 // Forward an accessibility location change message to an extension process | 115 // Forward an accessibility location change message to an extension process |
| 115 // where an extension is using the automation API to listen for | 116 // where an extension is using the automation API to listen for |
| 116 // accessibility events. | 117 // accessibility events. |
| 117 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange, | 118 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange, |
| 118 ExtensionMsg_AccessibilityLocationChangeParams) | 119 ExtensionMsg_AccessibilityLocationChangeParams) |
| 119 | |
| OLD | NEW |