Bug 888836 - Turn off audio channels for non apps. r=mfinkle

This commit is contained in:
Wes Johnston 2013-07-01 14:46:30 -07:00
parent f7feff6efe
commit 93dea58ab5
2 changed files with 4 additions and 3 deletions

View File

@ -749,8 +749,8 @@ pref("dom.payment.provider.0.type", "mozilla/payments/pay/v1");
pref("dom.payment.provider.0.requestMethod", "GET");
#endif
// Make <audio> and <video> talk to the AudioChannelService.
pref("media.useAudioChannelService", true);
// Support for the mozAudioChannel attribute on media elements is disabled in non-webapps
pref("media.useAudioChannelService", false);
// Turn on the CSP 1.0 parser for Content Security Policy headers
pref("security.csp.speccompliant", true);

View File

@ -29,7 +29,8 @@ let WebAppRT = {
pref("xpinstall.enabled", false),
// Set a future policy version to avoid the telemetry prompt.
pref("toolkit.telemetry.prompted", 999),
pref("toolkit.telemetry.notifiedOptOut", 999)
pref("toolkit.telemetry.notifiedOptOut", 999),
pref("media.useAudioChannelService", true);
],
init: function(aStatus, aUrl, aCallback) {