| 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 |
| 104 // The tree update. | 107 // The tree update. |
| 105 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) | 108 IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update) |
| 106 | 109 |
| 107 // Type of event. | 110 // Type of event. |
| 108 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) | 111 IPC_STRUCT_MEMBER(ui::AXEvent, event_type) |
| 109 | 112 |
| 110 // ID of the node that the event applies to. | 113 // ID of the node that the event applies to. |
| 111 IPC_STRUCT_MEMBER(int, id) | 114 IPC_STRUCT_MEMBER(int, id) |
| 112 | 115 |
| 113 // The source of this event. | 116 // The source of this event. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 142 | 145 |
| 143 // Messages sent from the renderer to the browser. | 146 // Messages sent from the renderer to the browser. |
| 144 | 147 |
| 145 | 148 |
| 146 // Sent by the renderer to implement chrome.webstore.install(). | 149 // Sent by the renderer to implement chrome.webstore.install(). |
| 147 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, | 150 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, |
| 148 int32_t /* install id */, | 151 int32_t /* install id */, |
| 149 int32_t /* return route id */, | 152 int32_t /* return route id */, |
| 150 std::string /* Web Store item ID */, | 153 std::string /* Web Store item ID */, |
| 151 int /* listeners_mask */) | 154 int /* listeners_mask */) |
| OLD | NEW |