diff options
author | Moonchild <mcwerewolf@wolfbeast.com> | 2019-01-31 14:54:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-31 14:54:57 +0100 |
commit | 6edfc0a2010cfe14c25f7a4fd3acf4ea3d6a9bf9 (patch) | |
tree | c7080a6109482793740f0f863a344886324df566 /toolkit/mozapps/extensions/internal | |
parent | fecab2c542df1e1aed5c9cb9ef45d113533c1dee (diff) | |
parent | a606410ba941d4d093ad02a1dde26eb75a7fd80a (diff) | |
download | uxp-6edfc0a2010cfe14c25f7a4fd3acf4ea3d6a9bf9.tar.gz |
Merge pull request #954 from MoonchildProductions/TychoEME-work
[TychoAM] Fix GMP* so that EME works in Basilisk
Diffstat (limited to 'toolkit/mozapps/extensions/internal')
-rw-r--r-- | toolkit/mozapps/extensions/internal/GMPProvider.jsm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/internal/GMPProvider.jsm b/toolkit/mozapps/extensions/internal/GMPProvider.jsm index 25651f1b82..131db7249d 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); |