| 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" |
| 11 #include "base/shared_memory.h" | 11 #include "base/shared_memory.h" |
| 12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "cc/output/compositor_frame.h" | 13 #include "cc/output/compositor_frame.h" |
| 14 #include "cc/output/compositor_frame_ack.h" | 14 #include "cc/output/compositor_frame_ack.h" |
| 15 #include "content/common/browser_plugin/browser_plugin_message_enums.h" | 15 #include "content/common/browser_plugin/browser_plugin_message_enums.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 #include "content/common/content_param_traits.h" | 17 #include "content/common/content_param_traits.h" |
| 18 #include "content/public/common/common_param_traits.h" | 18 #include "content/public/common/common_param_traits.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/Source/WebKit/chromium/public/WebDragOperation.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
| 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragStatus.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragStatus.h" |
| 24 #include "ui/gfx/point.h" | 24 #include "ui/gfx/point.h" |
| 25 #include "ui/gfx/rect.h" | 25 #include "ui/gfx/rect.h" |
| 26 #include "ui/gfx/size.h" | 26 #include "ui/gfx/size.h" |
| 27 #include "webkit/glue/webcursor.h" | 27 #include "webkit/common/cursors/webcursor.h" |
| 28 #include "webkit/glue/webdropdata.h" | 28 #include "webkit/glue/webdropdata.h" |
| 29 | 29 |
| 30 #undef IPC_MESSAGE_EXPORT | 30 #undef IPC_MESSAGE_EXPORT |
| 31 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 31 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 32 | 32 |
| 33 #define IPC_MESSAGE_START BrowserPluginMsgStart | 33 #define IPC_MESSAGE_START BrowserPluginMsgStart |
| 34 | 34 |
| 35 | 35 |
| 36 IPC_ENUM_TRAITS(BrowserPluginPermissionType) | 36 IPC_ENUM_TRAITS(BrowserPluginPermissionType) |
| 37 IPC_ENUM_TRAITS(WebKit::WebDragStatus) | 37 IPC_ENUM_TRAITS(WebKit::WebDragStatus) |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 // request to the embeddder through this message. | 449 // request to the embeddder through this message. |
| 450 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, | 450 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, |
| 451 int /* instance_id */, | 451 int /* instance_id */, |
| 452 BrowserPluginPermissionType /* permission_type */, | 452 BrowserPluginPermissionType /* permission_type */, |
| 453 int /* request_id */, | 453 int /* request_id */, |
| 454 DictionaryValue /* request_info */) | 454 DictionaryValue /* request_info */) |
| 455 | 455 |
| 456 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 456 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
| 457 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) | 457 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) |
| 458 | 458 |
| OLD | NEW |