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_CONTROL3(PpapiMsg_LoadPlugin, | 367 IPC_MESSAGE_CONTROL2(PpapiMsg_LoadPlugin, |
368 base::FilePath /* path */, | 368 base::FilePath /* path */, |
369 ppapi::PpapiPermissions /* permissions */, | 369 ppapi::PpapiPermissions /* permissions */) |
370 bool /* supports_dev_channel */) | |
371 | 370 |
372 // Creates a channel to talk to a renderer. The plugin will respond with | 371 // Creates a channel to talk to a renderer. The plugin will respond with |
373 // PpapiHostMsg_ChannelCreated. | 372 // PpapiHostMsg_ChannelCreated. |
374 IPC_MESSAGE_CONTROL3(PpapiMsg_CreateChannel, | 373 IPC_MESSAGE_CONTROL3(PpapiMsg_CreateChannel, |
375 base::ProcessId /* renderer_pid */, | 374 base::ProcessId /* renderer_pid */, |
376 int /* renderer_child_id */, | 375 int /* renderer_child_id */, |
377 bool /* incognito */) | 376 bool /* incognito */) |
378 | 377 |
379 // Creates a channel to talk to a renderer. This message is only used by the | 378 // Creates a channel to talk to a renderer. This message is only used by the |
380 // NaCl IPC proxy. It is intercepted by NaClIPCAdapter, which creates the | 379 // NaCl IPC proxy. It is intercepted by NaClIPCAdapter, which creates the |
(...skipping 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1999 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 1998 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2000 PP_TalkPermission /* permission */) | 1999 PP_TalkPermission /* permission */) |
2001 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2000 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2002 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2001 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2003 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2002 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2004 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2003 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2005 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2004 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2006 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2005 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2007 | 2006 |
2008 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2007 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |