| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 IPC_STRUCT_TRAITS_MEMBER(state) | 64 IPC_STRUCT_TRAITS_MEMBER(state) |
| 65 IPC_STRUCT_TRAITS_MEMBER(location) | 65 IPC_STRUCT_TRAITS_MEMBER(location) |
| 66 IPC_STRUCT_TRAITS_MEMBER(transform) | 66 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 67 IPC_STRUCT_TRAITS_MEMBER(string_attributes) | 67 IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| 68 IPC_STRUCT_TRAITS_MEMBER(int_attributes) | 68 IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| 69 IPC_STRUCT_TRAITS_MEMBER(float_attributes) | 69 IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| 70 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 70 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| 71 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 71 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
| 72 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 72 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| 73 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 73 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
| 74 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 74 IPC_STRUCT_TRAITS_END() | 75 IPC_STRUCT_TRAITS_END() |
| 75 | 76 |
| 76 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) | 77 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) |
| 77 IPC_STRUCT_TRAITS_MEMBER(tree_id) | 78 IPC_STRUCT_TRAITS_MEMBER(tree_id) |
| 78 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) | 79 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) |
| 79 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) | 80 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
| 80 IPC_STRUCT_TRAITS_MEMBER(url) | 81 IPC_STRUCT_TRAITS_MEMBER(url) |
| 81 IPC_STRUCT_TRAITS_MEMBER(title) | 82 IPC_STRUCT_TRAITS_MEMBER(title) |
| 82 IPC_STRUCT_TRAITS_MEMBER(mimetype) | 83 IPC_STRUCT_TRAITS_MEMBER(mimetype) |
| 83 IPC_STRUCT_TRAITS_MEMBER(doctype) | 84 IPC_STRUCT_TRAITS_MEMBER(doctype) |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 // Messages sent from the renderer to the browser. | 127 // Messages sent from the renderer to the browser. |
| 127 | 128 |
| 128 | 129 |
| 129 // Sent by the renderer to implement chrome.webstore.install(). | 130 // Sent by the renderer to implement chrome.webstore.install(). |
| 130 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, | 131 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, |
| 131 int32_t /* install id */, | 132 int32_t /* install id */, |
| 132 int32_t /* return route id */, | 133 int32_t /* return route id */, |
| 133 std::string /* Web Store item ID */, | 134 std::string /* Web Store item ID */, |
| 134 GURL /* requestor URL */, | 135 GURL /* requestor URL */, |
| 135 int /* listeners_mask */) | 136 int /* listeners_mask */) |
| OLD | NEW |