Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / MediaKeys.webidl
blob69e0a2adcb3d573c85dfb0f730430d64bf7d79e9
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 enum IsTypeSupportedResult { "" /* empty string */, "maybe", "probably" };
14 enum SessionType { "temporary", "persistent" };
16 [Pref="media.eme.enabled"]
17 interface MediaKeys {
18   readonly attribute DOMString keySystem;
20   [NewObject, Throws]
21   Promise<MediaKeySession> createSession(DOMString initDataType, (ArrayBufferView or ArrayBuffer) initData, optional SessionType sessionType = "temporary");
23   [NewObject, Throws]
24   Promise<MediaKeySession> loadSession(DOMString sessionId);
26   // void, not any: https://www.w3.org/Bugs/Public/show_bug.cgi?id=26457
27   [NewObject, Throws]
28   Promise<void> setServerCertificate((ArrayBufferView or ArrayBuffer) serverCertificate);
30   [Throws,NewObject]
31   static Promise<MediaKeys> create(DOMString keySystem);
32   static IsTypeSupportedResult isTypeSupported(DOMString keySystem, optional DOMString initDataType, optional DOMString contentType, optional DOMString capability);