OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/process.h" | 10 #include "base/process.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_NavigateFromGuest, | 76 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_NavigateFromGuest, |
77 PP_Instance /* instance */, | 77 PP_Instance /* instance */, |
78 std::string /* src */) | 78 std::string /* src */) |
79 | 79 |
80 // ----------------------------------------------------------------------------- | 80 // ----------------------------------------------------------------------------- |
81 // These messages are from the browser process to the embedder. | 81 // These messages are from the browser process to the embedder. |
82 | 82 |
83 // A guest instance is ready to be placed. | 83 // A guest instance is ready to be placed. |
84 IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadGuest, | 84 IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadGuest, |
85 int /* instance id */, | 85 int /* instance_id */, |
86 int /* guest_process_id */, | 86 int /* guest_process_id */, |
87 IPC::ChannelHandle /* channel_handle */) | 87 IPC::ChannelHandle /* channel_handle */) |
88 | 88 |
| 89 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_AdvanceFocus, |
| 90 int /* instance_id */, |
| 91 bool /* reverse */) |
| 92 |
OLD | NEW |