OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Multiply-included message header, no traditional include guard. |
| 6 |
| 7 #include "base/values.h" |
| 8 #include "ipc/ipc_message_macros.h" |
| 9 |
| 10 #define IPC_MESSAGE_START ChromeBrowserPluginMsgStart |
| 11 |
| 12 // Browser plugin messages |
| 13 |
| 14 // ----------------------------------------------------------------------------- |
| 15 // These messages are from the embedder to the browser process. |
| 16 |
| 17 IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript, |
| 18 int /* instance_id */, |
| 19 int /* request_id */, |
| 20 base::ListValue /* args */) |
| 21 |
| 22 // ----------------------------------------------------------------------------- |
| 23 |
| 24 // These messages are from the browser process to the embedder. |
| 25 |
| 26 IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript_Response, |
| 27 int /* instance_id */, |
| 28 int /* request_id */, |
| 29 base::ListValue /* result */) |
OLD | NEW |