Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(585)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 68773004: Pepper: Add MonitorIsExternal function to PPB_Flash_DRM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 int64_t /* hmonitor */) 1319 int64_t /* hmonitor */)
1320 1320
1321 // Requests the voucher file which is used to verify the integrity of the Flash 1321 // Requests the voucher file which is used to verify the integrity of the Flash
1322 // module. A PPB_FileRef resource will be created. 1322 // module. A PPB_FileRef resource will be created.
1323 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetVoucherFile) 1323 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetVoucherFile)
1324 // Reply message for GetVoucherFile which contains the CreateInfo for a 1324 // Reply message for GetVoucherFile which contains the CreateInfo for a
1325 // PPB_FileRef which points to the voucher file. 1325 // PPB_FileRef which points to the voucher file.
1326 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetVoucherFileReply, 1326 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetVoucherFileReply,
1327 ppapi::FileRefCreateInfo /* file_info */) 1327 ppapi::FileRefCreateInfo /* file_info */)
1328 1328
1329 // Requests a value indicating whether the monitor on which the instance is
1330 // displayed is external.
1331 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_MonitorIsExternal)
1332 // Reply message for MonitorIsExternal which contains the value indicating if
1333 // the monitor is external.
1334 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_MonitorIsExternalReply,
1335 PP_Bool /* is_external */)
1336
1329 // Gamepad. 1337 // Gamepad.
1330 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) 1338 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create)
1331 1339
1332 // Requests that the gamepad host send the shared memory handle to the plugin 1340 // Requests that the gamepad host send the shared memory handle to the plugin
1333 // process. 1341 // process.
1334 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) 1342 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory)
1335 1343
1336 // Reply to a RequestMemory call. This supplies the shared memory handle. The 1344 // Reply to a RequestMemory call. This supplies the shared memory handle. The
1337 // actual handle is passed in the ReplyParams struct. 1345 // actual handle is passed in the ReplyParams struct.
1338 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) 1346 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory)
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
1966 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 1974 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
1967 PP_TalkPermission /* permission */) 1975 PP_TalkPermission /* permission */)
1968 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 1976 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
1969 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 1977 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
1970 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 1978 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
1971 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 1979 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
1972 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 1980 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
1973 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 1981 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
1974 1982
1975 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1983 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698