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" |
11 #include "base/values.h" | 11 #include "base/values.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "content/common/content_param_traits.h" | 13 #include "content/common/content_param_traits.h" |
14 #include "content/common/cursors/webcursor.h" | 14 #include "content/common/cursors/webcursor.h" |
15 #include "content/common/edit_command.h" | 15 #include "content/common/edit_command.h" |
16 #include "content/common/frame_param_macros.h" | 16 #include "content/common/frame_param_macros.h" |
17 #include "content/public/common/common_param_traits.h" | 17 #include "content/public/common/common_param_traits.h" |
18 #include "content/public/common/drop_data.h" | 18 #include "content/public/common/drop_data.h" |
19 #include "ipc/ipc_channel_handle.h" | 19 #include "ipc/ipc_channel_handle.h" |
20 #include "ipc/ipc_message_macros.h" | 20 #include "ipc/ipc_message_macros.h" |
21 #include "ipc/ipc_message_utils.h" | 21 #include "ipc/ipc_message_utils.h" |
22 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 22 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
23 #include "third_party/WebKit/public/web/WebDragOperation.h" | 23 #include "third_party/WebKit/public/web/WebDragOperation.h" |
24 #include "third_party/WebKit/public/web/WebDragStatus.h" | 24 #include "third_party/WebKit/public/web/WebDragStatus.h" |
25 #include "third_party/skia/include/core/SkBitmap.h" | 25 #include "third_party/skia/include/core/SkBitmap.h" |
| 26 #include "ui/gfx/geometry/point.h" |
26 #include "ui/gfx/ipc/gfx_param_traits.h" | 27 #include "ui/gfx/ipc/gfx_param_traits.h" |
27 #include "ui/gfx/point.h" | |
28 #include "ui/gfx/rect.h" | 28 #include "ui/gfx/rect.h" |
29 #include "ui/gfx/size.h" | 29 #include "ui/gfx/size.h" |
30 #include "url/gurl.h" | 30 #include "url/gurl.h" |
31 | 31 |
32 #undef IPC_MESSAGE_EXPORT | 32 #undef IPC_MESSAGE_EXPORT |
33 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 33 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
34 | 34 |
35 #define IPC_MESSAGE_START BrowserPluginMsgStart | 35 #define IPC_MESSAGE_START BrowserPluginMsgStart |
36 | 36 |
37 | 37 |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 // See comment about BrowserPluginMsg_BuffersSwapped and | 277 // See comment about BrowserPluginMsg_BuffersSwapped and |
278 // BrowserPluginMsg_CompositorFrameSwapped for how these related | 278 // BrowserPluginMsg_CompositorFrameSwapped for how these related |
279 // to the FrameHostMsg variants. | 279 // to the FrameHostMsg variants. |
280 IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_BuffersSwappedACK, | 280 IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_BuffersSwappedACK, |
281 FrameHostMsg_BuffersSwappedACK_Params /* params */) | 281 FrameHostMsg_BuffersSwappedACK_Params /* params */) |
282 | 282 |
283 // Acknowledge that we presented an ubercomp frame. | 283 // Acknowledge that we presented an ubercomp frame. |
284 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_CompositorFrameSwappedACK, | 284 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_CompositorFrameSwappedACK, |
285 int /* instance_id */, | 285 int /* instance_id */, |
286 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) | 286 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) |
OLD | NEW |