summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/internal/GMPProvider.jsm
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-01-29 10:48:41 -0500
committerMatt A. Tobin <email@mattatobin.com>2019-01-29 10:48:41 -0500
commita606410ba941d4d093ad02a1dde26eb75a7fd80a (patch)
tree8164a71a825a5866c4524e0b0992e8f6c9474dd3 /toolkit/mozapps/extensions/internal/GMPProvider.jsm
parent7f992d50e417b0c2f18259ce2353e3ead4870694 (diff)
downloadUXP-a606410ba941d4d093ad02a1dde26eb75a7fd80a.tar
UXP-a606410ba941d4d093ad02a1dde26eb75a7fd80a.tar.gz
UXP-a606410ba941d4d093ad02a1dde26eb75a7fd80a.tar.lz
UXP-a606410ba941d4d093ad02a1dde26eb75a7fd80a.tar.xz
UXP-a606410ba941d4d093ad02a1dde26eb75a7fd80a.zip
[TychoAM] Fix GMP* so that EME works in Basilisk
Also, keep WebExAM working for the moment
Diffstat (limited to 'toolkit/mozapps/extensions/internal/GMPProvider.jsm')
-rw-r--r--toolkit/mozapps/extensions/internal/GMPProvider.jsm12
1 files changed, 12 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/internal/GMPProvider.jsm b/toolkit/mozapps/extensions/internal/GMPProvider.jsm
index 25651f1b8..131db7249 100644
--- a/toolkit/mozapps/extensions/internal/GMPProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/GMPProvider.jsm
@@ -49,6 +49,7 @@ const GMP_PLUGINS = [
homepageURL: "http://www.openh264.org/",
optionsURL: "chrome://mozapps/content/extensions/gmpPrefs.xul"
},
+/*
{
id: EME_ADOBE_ID,
name: "eme-adobe_name",
@@ -57,6 +58,17 @@ const GMP_PLUGINS = [
homepageURL: "http://help.adobe.com/en_US/primetime/drm/HTML5_CDM",
optionsURL: "chrome://mozapps/content/extensions/gmpPrefs.xul",
isEME: true
+ },
+*/
+ {
+ id: WIDEVINE_ID,
+ name: "widevine_description",
+ // Describe the purpose of both CDMs in the same way.
+ description: "eme-adobe_description",
+ licenseURL: "https://www.google.com/policies/privacy/",
+ homepageURL: "https://www.widevine.com/",
+ optionsURL: "chrome://mozapps/content/extensions/gmpPrefs.xul",
+ isEME: true
}];
XPCOMUtils.defineConstant(this, "GMP_PLUGINS", GMP_PLUGINS);