2014-06-07 00:52:15 +04: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.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2015-02-12 01:27:25 +03:00
|
|
|
[Pref="media.eme.apiVisible", Constructor(DOMString type, optional MediaKeyMessageEventInit eventInitDict)]
|
2014-06-07 00:52:15 +04:00
|
|
|
interface MediaKeyMessageEvent : Event {
|
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 {
|
2015-01-15 01:25:47 +03:00
|
|
|
MediaKeyMessageType messageType = "license-request";
|
2014-08-27 12:46:56 +04:00
|
|
|
ArrayBuffer message;
|
2014-06-07 00:52:15 +04:00
|
|
|
};
|