| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
| 6 // header guard. | 6 // header guard. |
| 7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1330 // returned. The handle can be used for sending messages to the extension. | 1330 // returned. The handle can be used for sending messages to the extension. |
| 1331 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, | 1331 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, |
| 1332 std::string /* extension_id */, | 1332 std::string /* extension_id */, |
| 1333 int /* port_id */) | 1333 int /* port_id */) |
| 1334 | 1334 |
| 1335 // Send a message to an extension process. The handle is the value returned | 1335 // Send a message to an extension process. The handle is the value returned |
| 1336 // by ViewHostMsg_OpenChannelToExtension. | 1336 // by ViewHostMsg_OpenChannelToExtension. |
| 1337 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, | 1337 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, |
| 1338 int /* port_id */, | 1338 int /* port_id */, |
| 1339 std::string /* message */) | 1339 std::string /* message */) |
| 1340 |
| 1341 // Message to show a popup menu using native cocoa controls (Mac only). |
| 1342 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, |
| 1343 ViewHostMsg_ShowPopup_Params) |
| 1344 |
| 1340 IPC_END_MESSAGES(ViewHost) | 1345 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |