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/process.h" | 10 #include "base/process/process.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 // rendering path. | 46 // rendering path. |
47 IPC_STRUCT_MEMBER(bool, repaint) | 47 IPC_STRUCT_MEMBER(bool, repaint) |
48 IPC_STRUCT_END() | 48 IPC_STRUCT_END() |
49 | 49 |
50 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) | 50 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) |
51 IPC_STRUCT_MEMBER(bool, focused) | 51 IPC_STRUCT_MEMBER(bool, focused) |
52 IPC_STRUCT_MEMBER(bool, visible) | 52 IPC_STRUCT_MEMBER(bool, visible) |
53 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params, | 53 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params, |
54 resize_guest_params) | 54 resize_guest_params) |
55 IPC_STRUCT_MEMBER(gfx::Point, origin) | 55 IPC_STRUCT_MEMBER(gfx::Point, origin) |
| 56 // Whether the browser plugin is a full page plugin document. |
| 57 IPC_STRUCT_MEMBER(bool, is_full_page_plugin) |
56 IPC_STRUCT_END() | 58 IPC_STRUCT_END() |
57 | 59 |
58 // Browser plugin messages | 60 // Browser plugin messages |
59 | 61 |
60 // ----------------------------------------------------------------------------- | 62 // ----------------------------------------------------------------------------- |
61 // These messages are from the embedder to the browser process. | 63 // These messages are from the embedder to the browser process. |
62 | 64 |
63 // This message is sent from BrowserPlugin to BrowserPluginGuest to issue an | 65 // This message is sent from BrowserPlugin to BrowserPluginGuest to issue an |
64 // edit command. | 66 // edit command. |
65 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_ExecuteEditCommand, | 67 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_ExecuteEditCommand, |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 211 |
210 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 212 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
211 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, | 213 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, |
212 int /* browser_plugin_instance_id */, | 214 int /* browser_plugin_instance_id */, |
213 bool /* enable */) | 215 bool /* enable */) |
214 | 216 |
215 // Acknowledge that we presented an ubercomp frame. | 217 // Acknowledge that we presented an ubercomp frame. |
216 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_CompositorFrameSwappedACK, | 218 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_CompositorFrameSwappedACK, |
217 int /* browser_plugin_instance_id */, | 219 int /* browser_plugin_instance_id */, |
218 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) | 220 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) |
OLD | NEW |