Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / webidl / MediaKeys.webidl
blobbfbe5bcfe67fa4424ba3aa87e88c17cb8a41ce06
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * https://dvcs.w3.org/hg/html-media/raw-file/default/encrypted-media/encrypted-media.html
8  *
9  * Copyright © 2014 W3C® (MIT, ERCIM, Keio, Beihang), All Rights Reserved.
10  * W3C liability, trademark and document use rules apply.
11  */
13 // Note: "persistent-usage-record" session type is unsupported yet, as
14 // it's marked as "at risk" in the spec, and Chrome doesn't support it.
15 enum MediaKeySessionType {
16   "temporary",
17   "persistent-license",
18   // persistent-usage-record,
21 // https://w3c.github.io/encrypted-media/#idl-def-hdcpversion
22 enum HDCPVersion {
23     "1.0",
24     "1.1",
25     "1.2",
26     "1.3",
27     "1.4",
28     "2.0",
29     "2.1",
30     "2.2",
31     "2.3",
34 // https://w3c.github.io/encrypted-media/#idl-def-mediakeyspolicy
35 dictionary MediaKeysPolicy {
36   HDCPVersion minHdcpVersion;
39 [Exposed=Window]
40 interface MediaKeys {
41   readonly attribute DOMString keySystem;
43   [NewObject, Throws]
44   MediaKeySession createSession(optional MediaKeySessionType sessionType = "temporary");
46   [NewObject]
47   Promise<undefined> setServerCertificate(BufferSource serverCertificate);
49   [Pref="media.eme.hdcp-policy-check.enabled", NewObject]
50   Promise<MediaKeyStatus> getStatusForPolicy(optional MediaKeysPolicy policy = {});