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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 IPC_STRUCT_MEMBER(gfx::Vector2d, location_offset) | 110 IPC_STRUCT_MEMBER(gfx::Vector2d, location_offset) |
111 | 111 |
112 // The tree update. | 112 // The tree update. |
113 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) | 113 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) |
114 | 114 |
115 // Type of event. | 115 // Type of event. |
116 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) | 116 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) |
117 | 117 |
118 // ID of the node that the event applies to. | 118 // ID of the node that the event applies to. |
119 IPC_STRUCT_MEMBER(int, id) | 119 IPC_STRUCT_MEMBER(int, id) |
| 120 |
| 121 // The source of this event. |
| 122 IPC_STRUCT_MEMBER(ui::AXEventFrom, event_from) |
120 IPC_STRUCT_END() | 123 IPC_STRUCT_END() |
121 | 124 |
122 IPC_STRUCT_BEGIN(ExtensionMsg_AccessibilityLocationChangeParams) | 125 IPC_STRUCT_BEGIN(ExtensionMsg_AccessibilityLocationChangeParams) |
123 // ID of the accessibility tree that this event applies to. | 126 // ID of the accessibility tree that this event applies to. |
124 IPC_STRUCT_MEMBER(int, tree_id) | 127 IPC_STRUCT_MEMBER(int, tree_id) |
125 | 128 |
126 // ID of the object whose location is changing. | 129 // ID of the object whose location is changing. |
127 IPC_STRUCT_MEMBER(int, id) | 130 IPC_STRUCT_MEMBER(int, id) |
128 | 131 |
129 // The object's new location info. | 132 // The object's new location info. |
(...skipping 15 matching lines...) Expand all Loading... |
145 // Messages sent from the renderer to the browser. | 148 // Messages sent from the renderer to the browser. |
146 | 149 |
147 | 150 |
148 // Sent by the renderer to implement chrome.webstore.install(). | 151 // Sent by the renderer to implement chrome.webstore.install(). |
149 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, | 152 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, |
150 int32_t /* install id */, | 153 int32_t /* install id */, |
151 int32_t /* return route id */, | 154 int32_t /* return route id */, |
152 std::string /* Web Store item ID */, | 155 std::string /* Web Store item ID */, |
153 GURL /* requestor URL */, | 156 GURL /* requestor URL */, |
154 int /* listeners_mask */) | 157 int /* listeners_mask */) |
OLD | NEW |