summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGaming4JC <g4jc@bulletmail.org>2018-10-22 18:54:35 -0400
committerGaming4JC <g4jc@bulletmail.org>2018-10-22 18:54:35 -0400
commit80e50e1b3f42577f8526c0fa9b31877b6ae21285 (patch)
tree912afc0244765c389b86cfeff6cf6a57ce3e7ccb /app
parentc4cbed0a687d22dece072f02a3d3cfbde1e85a70 (diff)
downloadiceweasel-uxp-80e50e1b3f42577f8526c0fa9b31877b6ae21285.tar.gz
Remove DRM References
Diffstat (limited to 'app')
-rw-r--r--app/profile/iceweasel-uxp.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/app/profile/iceweasel-uxp.js b/app/profile/iceweasel-uxp.js
index b255b2b..f671767 100644
--- a/app/profile/iceweasel-uxp.js
+++ b/app/profile/iceweasel-uxp.js
@@ -1173,58 +1173,6 @@ pref("identity.fxaccounts.migrateToDevEdition", false);
pref("ui.key.menuAccessKeyFocuses", true);
#endif
-#ifdef MOZ_EME
-// Encrypted media extensions.
-// EME is visible but disabled by default. This is so that the
-// "Play DRM content" checkbox in the browser UI is unchecked by default.
-// DRM requires downloading and installing proprietary binaries, which
-// users didn't necessarily opt-in to by installing the browser.
-// The first time a site using EME is encountered, the user will be
-// prompted to enable DRM, whereupon the EME plugin binaries will be
-// downloaded if permission is granted.
-pref("media.eme.enabled", false);
-pref("media.eme.apiVisible", true);
-#else
-// Disable redundant interfaces
-pref("media.eme.apiVisible", false);
-#endif
-
-// Decode using Gecko Media Plugins in <video>, if a system decoder is not
-// availble and the preferred GMP is available.
-pref("media.gmp.decoder.enabled", false);
-
-// If decoding-via-GMP is turned on for <video>, use Adobe's GMP for decoding,
-// if it's available. Note: We won't fallback to another GMP if Adobe's is not
-// installed.
-pref("media.gmp.decoder.aac", 2);
-pref("media.gmp.decoder.h264", 2);
-
-// Whether we should run a test-pattern through EME GMPs before assuming they'll
-// decode H.264.
-pref("media.gmp.trial-create.enabled", true);
-
-// Note: when media.gmp-*.visible is true, provided we're running on a
-// supported platform/OS version, the corresponding CDM appears in the
-// plugins list, Firefox will download the GMP/CDM if enabled, and our
-// UI to re-enable EME prompts the user to re-enable EME if it's disabled
-// and script requests EME. If *.visible is false, we won't show the UI
-// to enable the CDM if its disabled; it's as if the keysystem is completely
-// unsupported.
-
-#ifdef MOZ_ADOBE_EME
-pref("media.gmp-eme-adobe.visible", true);
-// When Adobe EME is enabled in the build system, we don't actually enable
-// the plugin by default, so that it doesn't download and install by default.
-// When Adobe EME is first used, Firefox will prompt the user to enable it,
-// and then download the CDM.
-pref("media.gmp-eme-adobe.enabled", false);
-#endif
-
-#ifdef MOZ_WIDEVINE_EME
-pref("media.gmp-widevinecdm.visible", true);
-pref("media.gmp-widevinecdm.enabled", true);
-#endif
-
// Play with different values of the decay time and get telemetry,
// 0 means to randomize (and persist) the experiment value in users' profiles,
// -1 means no experiment is run and we use the preferred value for frecency (6h)