2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2014-06-07 00:52:15 +04:00
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 01:25:47 +03:00
|
|
|
enum MediaKeyMessageType {
|
|
|
|
"license-request",
|
|
|
|
"license-renewal",
|
2015-01-26 22:08:00 +03:00
|
|
|
"license-release",
|
|
|
|
"individualization-request"
|
2015-01-15 01:25:47 +03:00
|
|
|
};
|
|
|
|
|
2019-09-27 18:26:14 +03:00
|
|
|
[Exposed=Window]
|
2014-06-07 00:52:15 +04:00
|
|
|
interface MediaKeyMessageEvent : Event {
|
2019-09-11 17:35:28 +03:00
|
|
|
[Throws]
|
|
|
|
constructor(DOMString type, MediaKeyMessageEventInit eventInitDict);
|
|
|
|
|
2015-01-15 01:25:47 +03:00
|
|
|
readonly attribute MediaKeyMessageType messageType;
|
2014-06-07 00:52:15 +04:00
|
|
|
[Throws]
|
2014-08-27 12:46:56 +04:00
|
|
|
readonly attribute ArrayBuffer message;
|
2014-06-07 00:52:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary MediaKeyMessageEventInit : EventInit {
|
2016-10-19 10:33:54 +03:00
|
|
|
required MediaKeyMessageType messageType;
|
|
|
|
required ArrayBuffer message;
|
2014-06-07 00:52:15 +04:00
|
|
|
};
|