| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 IPC_MESSAGE_ROUTED4(ExtensionMsg_InlineWebstoreInstallResponse, | 51 IPC_MESSAGE_ROUTED4(ExtensionMsg_InlineWebstoreInstallResponse, |
| 52 int32_t /* install id */, | 52 int32_t /* install id */, |
| 53 bool /* whether the install was successful */, | 53 bool /* whether the install was successful */, |
| 54 std::string /* error */, | 54 std::string /* error */, |
| 55 extensions::webstore_install::Result /* result */) | 55 extensions::webstore_install::Result /* result */) |
| 56 | 56 |
| 57 IPC_STRUCT_TRAITS_BEGIN(ui::AXNodeData) | 57 IPC_STRUCT_TRAITS_BEGIN(ui::AXNodeData) |
| 58 IPC_STRUCT_TRAITS_MEMBER(id) | 58 IPC_STRUCT_TRAITS_MEMBER(id) |
| 59 IPC_STRUCT_TRAITS_MEMBER(role) | 59 IPC_STRUCT_TRAITS_MEMBER(role) |
| 60 IPC_STRUCT_TRAITS_MEMBER(state) | 60 IPC_STRUCT_TRAITS_MEMBER(state) |
| 61 IPC_STRUCT_TRAITS_MEMBER(actions) |
| 61 IPC_STRUCT_TRAITS_MEMBER(location) | 62 IPC_STRUCT_TRAITS_MEMBER(location) |
| 62 IPC_STRUCT_TRAITS_MEMBER(transform) | 63 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 63 IPC_STRUCT_TRAITS_MEMBER(string_attributes) | 64 IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| 64 IPC_STRUCT_TRAITS_MEMBER(int_attributes) | 65 IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| 65 IPC_STRUCT_TRAITS_MEMBER(float_attributes) | 66 IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| 66 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 67 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| 67 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 68 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
| 68 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 69 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| 69 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 70 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
| 70 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 71 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 143 |
| 143 // Messages sent from the renderer to the browser. | 144 // Messages sent from the renderer to the browser. |
| 144 | 145 |
| 145 | 146 |
| 146 // Sent by the renderer to implement chrome.webstore.install(). | 147 // Sent by the renderer to implement chrome.webstore.install(). |
| 147 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, | 148 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_InlineWebstoreInstall, |
| 148 int32_t /* install id */, | 149 int32_t /* install id */, |
| 149 int32_t /* return route id */, | 150 int32_t /* return route id */, |
| 150 std::string /* Web Store item ID */, | 151 std::string /* Web Store item ID */, |
| 151 int /* listeners_mask */) | 152 int /* listeners_mask */) |
| OLD | NEW |