2014-06-06 20:52:15 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://dvcs.w3.org/hg/html-media/raw-file/default/encrypted-media/encrypted-media.html
|
|
|
|
*
|
|
|
|
* Copyright © 2014 W3C® (MIT, ERCIM, Keio, Beihang), All Rights Reserved.
|
|
|
|
* W3C liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum IsTypeSupportedResult { "" /* empty string */, "maybe", "probably" };
|
|
|
|
enum SessionType { "temporary", "persistent" };
|
|
|
|
|
|
|
|
[Pref="media.eme.enabled"]
|
|
|
|
interface MediaKeys {
|
|
|
|
readonly attribute DOMString keySystem;
|
|
|
|
|
2014-07-19 01:31:11 +00:00
|
|
|
[NewObject, Throws]
|
2014-08-27 08:46:56 +00:00
|
|
|
Promise<MediaKeySession> createSession(DOMString initDataType, (ArrayBufferView or ArrayBuffer) initData, optional SessionType sessionType = "temporary");
|
2014-06-06 20:52:15 +00:00
|
|
|
|
2014-07-19 01:31:11 +00:00
|
|
|
[NewObject, Throws]
|
2014-08-01 03:50:30 +00:00
|
|
|
Promise<MediaKeySession> loadSession(DOMString sessionId);
|
2014-06-06 20:52:15 +00:00
|
|
|
|
2014-08-01 03:50:30 +00:00
|
|
|
// void, not any: https://www.w3.org/Bugs/Public/show_bug.cgi?id=26457
|
2014-07-19 01:31:11 +00:00
|
|
|
[NewObject, Throws]
|
2014-08-27 08:46:56 +00:00
|
|
|
Promise<void> setServerCertificate((ArrayBufferView or ArrayBuffer) serverCertificate);
|
2014-06-06 20:52:15 +00:00
|
|
|
|
|
|
|
[Throws,NewObject]
|
2014-08-01 03:50:30 +00:00
|
|
|
static Promise<MediaKeys> create(DOMString keySystem);
|
2014-06-06 20:52:15 +00:00
|
|
|
static IsTypeSupportedResult isTypeSupported(DOMString keySystem, optional DOMString initDataType, optional DOMString contentType, optional DOMString capability);
|
|
|
|
|
|
|
|
};
|