diff options
author | JustOff <Off.Just.Off@gmail.com> | 2019-11-16 16:01:44 +0200 |
---|---|---|
committer | JustOff <Off.Just.Off@gmail.com> | 2019-11-16 16:01:44 +0200 |
commit | d034857122f608f654b10a6ca204d35adddcde08 (patch) | |
tree | 585ae79884522b4c25fb430f199fe97a0b35b06a | |
parent | 556349010e01d0a3b7896f858d503781ea837b46 (diff) | |
download | uxp-d034857122f608f654b10a6ca204d35adddcde08.tar.gz |
Issue #1259 - Adjust Widewine strings after removing Adobe Primetime support
-rw-r--r-- | dom/locales/en-US/chrome/plugins.properties | 5 | ||||
-rw-r--r-- | toolkit/mozapps/extensions/internal/GMPProvider.jsm | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/dom/locales/en-US/chrome/plugins.properties b/dom/locales/en-US/chrome/plugins.properties index 6fa829bf12..d5e65fea73 100644 --- a/dom/locales/en-US/chrome/plugins.properties +++ b/dom/locales/en-US/chrome/plugins.properties @@ -28,6 +28,5 @@ gmp_privacy_info=Privacy Information openH264_name=OpenH264 Video Codec provided by Cisco Systems, Inc. openH264_description2=This plugin is automatically installed by Mozilla to comply with the WebRTC specification and to enable WebRTC calls with devices that require the H.264 video codec. Visit http://www.openh264.org/ to view the codec source code and learn more about the implementation. -eme-adobe_description=Play back protected web video. - -widevine_description=Widevine Content Decryption Module provided by Google Inc. +widevine_name=Widevine Content Decryption Module provided by Google Inc. +widevine_description2=Play back protected web video. diff --git a/toolkit/mozapps/extensions/internal/GMPProvider.jsm b/toolkit/mozapps/extensions/internal/GMPProvider.jsm index 39d8f2d98c..2ebde08bb1 100644 --- a/toolkit/mozapps/extensions/internal/GMPProvider.jsm +++ b/toolkit/mozapps/extensions/internal/GMPProvider.jsm @@ -51,9 +51,9 @@ const GMP_PLUGINS = [ }, { id: WIDEVINE_ID, - name: "widevine_description", + name: "widevine_name", // Describe the purpose of both CDMs in the same way. - description: "eme-adobe_description", + description: "widevine_description2", licenseURL: "https://www.google.com/policies/privacy/", homepageURL: "https://www.widevine.com/", optionsURL: "chrome://mozapps/content/extensions/gmpPrefs.xul", |