| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 int32_t /* install id */, | 55 int32_t /* install id */, |
| 56 bool /* whether the install was successful */, | 56 bool /* whether the install was successful */, |
| 57 std::string /* error */, | 57 std::string /* error */, |
| 58 extensions::webstore_install::Result /* result */) | 58 extensions::webstore_install::Result /* result */) |
| 59 | 59 |
| 60 IPC_STRUCT_TRAITS_BEGIN(ui::AXNodeData) | 60 IPC_STRUCT_TRAITS_BEGIN(ui::AXNodeData) |
| 61 IPC_STRUCT_TRAITS_MEMBER(id) | 61 IPC_STRUCT_TRAITS_MEMBER(id) |
| 62 IPC_STRUCT_TRAITS_MEMBER(role) | 62 IPC_STRUCT_TRAITS_MEMBER(role) |
| 63 IPC_STRUCT_TRAITS_MEMBER(state) | 63 IPC_STRUCT_TRAITS_MEMBER(state) |
| 64 IPC_STRUCT_TRAITS_MEMBER(location) | 64 IPC_STRUCT_TRAITS_MEMBER(location) |
| 65 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 65 IPC_STRUCT_TRAITS_MEMBER(string_attributes) | 66 IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| 66 IPC_STRUCT_TRAITS_MEMBER(int_attributes) | 67 IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| 67 IPC_STRUCT_TRAITS_MEMBER(float_attributes) | 68 IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| 68 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 69 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| 69 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 70 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
| 70 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 71 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| 71 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 72 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
| 72 IPC_STRUCT_TRAITS_END() | 73 IPC_STRUCT_TRAITS_END() |
| 73 | 74 |
| 74 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) | 75 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 // Messages sent from the renderer to the browser. | 121 // Messages sent from the renderer to the browser. |
| 121 | 122 |
| 122 | 123 |
| 123 // Sent by the renderer to implement chrome.webstore.install(). | 124 // Sent by the renderer to implement chrome.webstore.install(). |
| 124 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, | 125 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, |
| 125 int32_t /* install id */, | 126 int32_t /* install id */, |
| 126 int32_t /* return route id */, | 127 int32_t /* return route id */, |
| 127 std::string /* Web Store item ID */, | 128 std::string /* Web Store item ID */, |
| 128 GURL /* requestor URL */, | 129 GURL /* requestor URL */, |
| 129 int /* listeners_mask */) | 130 int /* listeners_mask */) |
| OLD | NEW |