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 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1330 int64_t /* hmonitor */) | 1330 int64_t /* hmonitor */) |
1331 | 1331 |
1332 // Requests the voucher file which is used to verify the integrity of the Flash | 1332 // Requests the voucher file which is used to verify the integrity of the Flash |
1333 // module. A PPB_FileRef resource will be created. | 1333 // module. A PPB_FileRef resource will be created. |
1334 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetVoucherFile) | 1334 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetVoucherFile) |
1335 // Reply message for GetVoucherFile which contains the CreateInfo for a | 1335 // Reply message for GetVoucherFile which contains the CreateInfo for a |
1336 // PPB_FileRef which points to the voucher file. | 1336 // PPB_FileRef which points to the voucher file. |
1337 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetVoucherFileReply, | 1337 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetVoucherFileReply, |
1338 ppapi::FileRefCreateInfo /* file_info */) | 1338 ppapi::FileRefCreateInfo /* file_info */) |
1339 | 1339 |
| 1340 // Requests a value indicating whether the monitor on which the instance is |
| 1341 // displayed is external. |
| 1342 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_MonitorIsExternal) |
| 1343 // Reply message for MonitorIsExternal which contains the value indicating if |
| 1344 // the monitor is external. |
| 1345 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_MonitorIsExternalReply, |
| 1346 PP_Bool /* is_external */) |
| 1347 |
1340 // Gamepad. | 1348 // Gamepad. |
1341 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) | 1349 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) |
1342 | 1350 |
1343 // Requests that the gamepad host send the shared memory handle to the plugin | 1351 // Requests that the gamepad host send the shared memory handle to the plugin |
1344 // process. | 1352 // process. |
1345 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) | 1353 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) |
1346 | 1354 |
1347 // Reply to a RequestMemory call. This supplies the shared memory handle. The | 1355 // Reply to a RequestMemory call. This supplies the shared memory handle. The |
1348 // actual handle is passed in the ReplyParams struct. | 1356 // actual handle is passed in the ReplyParams struct. |
1349 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) | 1357 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1988 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 1996 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
1989 PP_TalkPermission /* permission */) | 1997 PP_TalkPermission /* permission */) |
1990 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 1998 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
1991 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 1999 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
1992 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2000 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
1993 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2001 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
1994 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2002 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
1995 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2003 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
1996 | 2004 |
1997 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2005 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |