diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2017-12-13 00:26:07 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-24 10:13:29 +0100 |
commit | 55d03738f9f79e30bab6294b023176d1a65ab5c3 (patch) | |
tree | 7642bab700a61a4d0880b1f0773cbd8a9760217a /dom/webidl | |
parent | 011dac290a9ea52539754aa64958df204425eb76 (diff) | |
download | UXP-55d03738f9f79e30bab6294b023176d1a65ab5c3.tar UXP-55d03738f9f79e30bab6294b023176d1a65ab5c3.tar.gz UXP-55d03738f9f79e30bab6294b023176d1a65ab5c3.tar.lz UXP-55d03738f9f79e30bab6294b023176d1a65ab5c3.tar.xz UXP-55d03738f9f79e30bab6294b023176d1a65ab5c3.zip |
Don't include MediaKeySystemAccess without EME.
This also removes checks for EME content in documents.
This removes practical use of EME by no longer having a keying system. (no-op)
tag #26
Diffstat (limited to 'dom/webidl')
-rw-r--r-- | dom/webidl/Navigator.webidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dom/webidl/Navigator.webidl b/dom/webidl/Navigator.webidl index 56461e429..5452f3247 100644 --- a/dom/webidl/Navigator.webidl +++ b/dom/webidl/Navigator.webidl @@ -348,12 +348,14 @@ partial interface Navigator { readonly attribute LegacyMozTCPSocket mozTCPSocket; }; +#ifdef MOZ_EME partial interface Navigator { [Pref="media.eme.apiVisible", NewObject] Promise<MediaKeySystemAccess> requestMediaKeySystemAccess(DOMString keySystem, sequence<MediaKeySystemConfiguration> supportedConfigurations); }; +#endif #ifdef NIGHTLY_BUILD partial interface Navigator { |