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/memory/shared_memory.h" |
10 #include "base/process.h" | 11 #include "base/process.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/common/edit_command.h" | 18 #include "content/common/edit_command.h" |
19 #include "content/public/common/common_param_traits.h" | 19 #include "content/public/common/common_param_traits.h" |
20 #include "content/public/common/drop_data.h" | 20 #include "content/public/common/drop_data.h" |
21 #include "ipc/ipc_channel_handle.h" | 21 #include "ipc/ipc_channel_handle.h" |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 // request to the embeddder through this message. | 376 // request to the embeddder through this message. |
377 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, | 377 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, |
378 int /* instance_id */, | 378 int /* instance_id */, |
379 BrowserPluginPermissionType /* permission_type */, | 379 BrowserPluginPermissionType /* permission_type */, |
380 int /* request_id */, | 380 int /* request_id */, |
381 base::DictionaryValue /* request_info */) | 381 base::DictionaryValue /* request_info */) |
382 | 382 |
383 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 383 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
384 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) | 384 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) |
385 | 385 |
OLD | NEW |