| 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 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 IPC_STRUCT_TRAITS_BEGIN(ppapi::proxy::PPPDecryptor_Buffer) | 357 IPC_STRUCT_TRAITS_BEGIN(ppapi::proxy::PPPDecryptor_Buffer) |
| 358 IPC_STRUCT_TRAITS_MEMBER(resource) | 358 IPC_STRUCT_TRAITS_MEMBER(resource) |
| 359 IPC_STRUCT_TRAITS_MEMBER(handle) | 359 IPC_STRUCT_TRAITS_MEMBER(handle) |
| 360 IPC_STRUCT_TRAITS_MEMBER(size) | 360 IPC_STRUCT_TRAITS_MEMBER(size) |
| 361 IPC_STRUCT_TRAITS_END() | 361 IPC_STRUCT_TRAITS_END() |
| 362 | 362 |
| 363 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 363 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| 364 | 364 |
| 365 // These are from the browser to the plugin. | 365 // These are from the browser to the plugin. |
| 366 // Loads the given plugin. | 366 // Loads the given plugin. |
| 367 IPC_MESSAGE_CONTROL2(PpapiMsg_LoadPlugin, | 367 IPC_MESSAGE_CONTROL3(PpapiMsg_LoadPlugin, |
| 368 base::FilePath /* path */, | 368 base::FilePath /* path */, |
| 369 ppapi::PpapiPermissions /* permissions */) | 369 ppapi::PpapiPermissions /* permissions */, |
| 370 bool /* supports_dev_channel */) |
| 370 | 371 |
| 371 // Creates a channel to talk to a renderer. The plugin will respond with | 372 // Creates a channel to talk to a renderer. The plugin will respond with |
| 372 // PpapiHostMsg_ChannelCreated. | 373 // PpapiHostMsg_ChannelCreated. |
| 373 IPC_MESSAGE_CONTROL3(PpapiMsg_CreateChannel, | 374 IPC_MESSAGE_CONTROL3(PpapiMsg_CreateChannel, |
| 374 base::ProcessId /* renderer_pid */, | 375 base::ProcessId /* renderer_pid */, |
| 375 int /* renderer_child_id */, | 376 int /* renderer_child_id */, |
| 376 bool /* incognito */) | 377 bool /* incognito */) |
| 377 | 378 |
| 378 // Creates a channel to talk to a renderer. This message is only used by the | 379 // Creates a channel to talk to a renderer. This message is only used by the |
| 379 // NaCl IPC proxy. It is intercepted by NaClIPCAdapter, which creates the | 380 // NaCl IPC proxy. It is intercepted by NaClIPCAdapter, which creates the |
| (...skipping 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1998 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 1999 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 1999 PP_TalkPermission /* permission */) | 2000 PP_TalkPermission /* permission */) |
| 2000 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2001 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2001 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2002 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2002 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2003 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2003 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2004 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2004 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2005 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2005 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2006 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2006 | 2007 |
| 2007 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2008 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |