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
3 * found in the LICENSE file.
7 * This file contains the <code>PPB_Flash_DRM</code> interface.
18 * A resource for performing Flash DRM-related operations.
20 interface PPB_Flash_DRM
{
22 * Creates a PPB_Flash_DRM resource for performing DRM-related operations in
25 PP_Resource Create
([in] PP_Instance instance
);
28 * Asynchronously computes the device ID. When available, it will place the
29 * string in |*id| and will call the completion callback. On failure the
30 * given var will be PP_VARTYPE_UNDEFINED.
32 int32_t GetDeviceID
([in] PP_Resource drm
,
34 [in] PP_CompletionCallback
callback);
37 * Windows only. Synchronously outputs the HMONITOR corresponding to the
38 * monitor on which the plugin instance is displayed in |hmonitor|. PP_TRUE is
39 * returned on success.
41 PP_Bool GetHmonitor
([in] PP_Resource drm
,
42 [out] int64_t hmonitor
);
45 * Asynchronously returns a PPB_FileRef resource in |file_ref| which points to
46 * the Voucher file for performing DRM verification. |callback| will be called
49 int32_t GetVoucherFile
([in] PP_Resource drm
,
50 [out] PP_Resource file_ref
,
51 [in] PP_CompletionCallback
callback);
54 * Asynchronously returns a value indicating whether the monitor on which the
55 * plugin instance is displayed is external. |callback| will be called upon
59 int32_t MonitorIsExternal
([in] PP_Resource drm
,
60 [out] PP_Bool is_external
,
61 [in] PP_CompletionCallback
callback);