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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 IPC_STRUCT_TRAITS_MEMBER(tree_data) | 94 IPC_STRUCT_TRAITS_MEMBER(tree_data) |
95 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) | 95 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) |
96 IPC_STRUCT_TRAITS_MEMBER(root_id) | 96 IPC_STRUCT_TRAITS_MEMBER(root_id) |
97 IPC_STRUCT_TRAITS_MEMBER(nodes) | 97 IPC_STRUCT_TRAITS_MEMBER(nodes) |
98 IPC_STRUCT_TRAITS_END() | 98 IPC_STRUCT_TRAITS_END() |
99 | 99 |
100 IPC_STRUCT_BEGIN(ExtensionMsg_AccessibilityEventParams) | 100 IPC_STRUCT_BEGIN(ExtensionMsg_AccessibilityEventParams) |
101 // ID of the accessibility tree that this event applies to. | 101 // ID of the accessibility tree that this event applies to. |
102 IPC_STRUCT_MEMBER(int, tree_id) | 102 IPC_STRUCT_MEMBER(int, tree_id) |
103 | 103 |
104 // The global offset of all coordinates in this accessibility tree. | |
105 IPC_STRUCT_MEMBER(gfx::Vector2d, location_offset) | |
106 | |
107 // The tree update. | 104 // The tree update. |
108 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) | 105 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) |
109 | 106 |
110 // Type of event. | 107 // Type of event. |
111 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) | 108 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) |
112 | 109 |
113 // ID of the node that the event applies to. | 110 // ID of the node that the event applies to. |
114 IPC_STRUCT_MEMBER(int, id) | 111 IPC_STRUCT_MEMBER(int, id) |
115 | 112 |
116 // The source of this event. | 113 // The source of this event. |
(...skipping 28 matching lines...) Expand all Loading... |
145 | 142 |
146 // Messages sent from the renderer to the browser. | 143 // Messages sent from the renderer to the browser. |
147 | 144 |
148 | 145 |
149 // Sent by the renderer to implement chrome.webstore.install(). | 146 // Sent by the renderer to implement chrome.webstore.install(). |
150 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, | 147 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, |
151 int32_t /* install id */, | 148 int32_t /* install id */, |
152 int32_t /* return route id */, | 149 int32_t /* return route id */, |
153 std::string /* Web Store item ID */, | 150 std::string /* Web Store item ID */, |
154 int /* listeners_mask */) | 151 int /* listeners_mask */) |
OLD | NEW |