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 // Tells the guest to navigate to an entry |relative_index| away from the |
| 18 // current navigation entry. |
| 19 IPC_MESSAGE_ROUTED1(ChromeBrowserPluginHostMsg_Go, |
| 20 int /* relative_index */) |
| 21 |
| 22 // Tell the guest to stop loading. |
| 23 IPC_MESSAGE_ROUTED0(ChromeBrowserPluginHostMsg_Stop) |
| 24 |
| 25 // Tell the guest to reload. |
| 26 IPC_MESSAGE_ROUTED0(ChromeBrowserPluginHostMsg_Reload) |
| 27 |
| 28 // ----------------------------------------------------------------------------- |
| 29 |
| 30 // These messages are from the browser process to the embedder. |
| 31 |
OLD | NEW |