| 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 19 matching lines...) Expand all Loading... |
| 30 #include "ui/gfx/ipc/gfx_param_traits.h" | 30 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 31 #include "url/gurl.h" | 31 #include "url/gurl.h" |
| 32 | 32 |
| 33 #undef IPC_MESSAGE_EXPORT | 33 #undef IPC_MESSAGE_EXPORT |
| 34 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 34 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 35 | 35 |
| 36 #define IPC_MESSAGE_START BrowserPluginMsgStart | 36 #define IPC_MESSAGE_START BrowserPluginMsgStart |
| 37 | 37 |
| 38 | 38 |
| 39 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebDragStatus, blink::WebDragStatusLast) | 39 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebDragStatus, blink::WebDragStatusLast) |
| 40 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFocusType, blink::WebFocusTypeLast) | |
| 41 | 40 |
| 42 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) | 41 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) |
| 43 IPC_STRUCT_MEMBER(bool, focused) | 42 IPC_STRUCT_MEMBER(bool, focused) |
| 44 IPC_STRUCT_MEMBER(bool, visible) | 43 IPC_STRUCT_MEMBER(bool, visible) |
| 45 // The new size of the guest view. | 44 // The new size of the guest view. |
| 46 IPC_STRUCT_MEMBER(gfx::Rect, view_rect) | 45 IPC_STRUCT_MEMBER(gfx::Rect, view_rect) |
| 47 // Whether the browser plugin is a full page plugin document. | 46 // Whether the browser plugin is a full page plugin document. |
| 48 IPC_STRUCT_MEMBER(bool, is_full_page_plugin) | 47 IPC_STRUCT_MEMBER(bool, is_full_page_plugin) |
| 49 IPC_STRUCT_END() | 48 IPC_STRUCT_END() |
| 50 | 49 |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 | 204 |
| 206 // Sends text to be displayed in tooltip. | 205 // Sends text to be displayed in tooltip. |
| 207 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, | 206 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, |
| 208 int /* browser_plugin_instance_id */, | 207 int /* browser_plugin_instance_id */, |
| 209 base::string16 /* tooltip_text */) | 208 base::string16 /* tooltip_text */) |
| 210 | 209 |
| 211 // Acknowledge that we presented an ubercomp frame. | 210 // Acknowledge that we presented an ubercomp frame. |
| 212 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_CompositorFrameSwappedACK, | 211 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_CompositorFrameSwappedACK, |
| 213 int /* browser_plugin_instance_id */, | 212 int /* browser_plugin_instance_id */, |
| 214 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) | 213 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) |
| OLD | NEW |