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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // Sent by the renderer to implement chrome.webstore.install(). | 83 // Sent by the renderer to implement chrome.webstore.install(). |
84 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, | 84 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, |
85 int32 /* install id */, | 85 int32 /* install id */, |
86 int32 /* return route id */, | 86 int32 /* return route id */, |
87 std::string /* Web Store item ID */, | 87 std::string /* Web Store item ID */, |
88 GURL /* requestor URL */, | 88 GURL /* requestor URL */, |
89 int /* listeners_mask */) | 89 int /* listeners_mask */) |
90 | 90 |
91 IPC_MESSAGE_ROUTED1(ChromeExtensionHostMsg_DidGetApplicationInfo, | 91 IPC_MESSAGE_ROUTED1(ChromeExtensionHostMsg_DidGetApplicationInfo, |
92 WebApplicationInfo) | 92 WebApplicationInfo) |
93 | |
94 // Sent by the renderer to set initialization parameters of a Browser Plugin | |
95 // that is identified by |element_instance_id|. | |
96 IPC_MESSAGE_CONTROL4(ChromeExtensionHostMsg_AttachGuest, | |
97 int /* routing_id */, | |
98 int /* element_instance_id */, | |
99 int /* guest_instance_id */, | |
100 base::DictionaryValue /* attach_params */) | |
OLD | NEW |