| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) | 79 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
| 80 IPC_STRUCT_TRAITS_MEMBER(url) | 80 IPC_STRUCT_TRAITS_MEMBER(url) |
| 81 IPC_STRUCT_TRAITS_MEMBER(title) | 81 IPC_STRUCT_TRAITS_MEMBER(title) |
| 82 IPC_STRUCT_TRAITS_MEMBER(mimetype) | 82 IPC_STRUCT_TRAITS_MEMBER(mimetype) |
| 83 IPC_STRUCT_TRAITS_MEMBER(doctype) | 83 IPC_STRUCT_TRAITS_MEMBER(doctype) |
| 84 IPC_STRUCT_TRAITS_MEMBER(loaded) | 84 IPC_STRUCT_TRAITS_MEMBER(loaded) |
| 85 IPC_STRUCT_TRAITS_MEMBER(loading_progress) | 85 IPC_STRUCT_TRAITS_MEMBER(loading_progress) |
| 86 IPC_STRUCT_TRAITS_MEMBER(focus_id) | 86 IPC_STRUCT_TRAITS_MEMBER(focus_id) |
| 87 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) | 87 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) |
| 88 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) | 88 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) |
| 89 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_affinity) |
| 89 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) | 90 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) |
| 90 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset) | 91 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset) |
| 92 IPC_STRUCT_TRAITS_MEMBER(sel_focus_affinity) |
| 91 IPC_STRUCT_TRAITS_END() | 93 IPC_STRUCT_TRAITS_END() |
| 92 | 94 |
| 93 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeUpdate) | 95 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeUpdate) |
| 94 IPC_STRUCT_TRAITS_MEMBER(has_tree_data) | 96 IPC_STRUCT_TRAITS_MEMBER(has_tree_data) |
| 95 IPC_STRUCT_TRAITS_MEMBER(tree_data) | 97 IPC_STRUCT_TRAITS_MEMBER(tree_data) |
| 96 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) | 98 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) |
| 97 IPC_STRUCT_TRAITS_MEMBER(root_id) | 99 IPC_STRUCT_TRAITS_MEMBER(root_id) |
| 98 IPC_STRUCT_TRAITS_MEMBER(nodes) | 100 IPC_STRUCT_TRAITS_MEMBER(nodes) |
| 99 IPC_STRUCT_TRAITS_END() | 101 IPC_STRUCT_TRAITS_END() |
| 100 | 102 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 124 // Messages sent from the renderer to the browser. | 126 // Messages sent from the renderer to the browser. |
| 125 | 127 |
| 126 | 128 |
| 127 // Sent by the renderer to implement chrome.webstore.install(). | 129 // Sent by the renderer to implement chrome.webstore.install(). |
| 128 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, | 130 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, |
| 129 int32_t /* install id */, | 131 int32_t /* install id */, |
| 130 int32_t /* return route id */, | 132 int32_t /* return route id */, |
| 131 std::string /* Web Store item ID */, | 133 std::string /* Web Store item ID */, |
| 132 GURL /* requestor URL */, | 134 GURL /* requestor URL */, |
| 133 int /* listeners_mask */) | 135 int /* listeners_mask */) |
| OLD | NEW |