Bug 1140263: Disable Adobe EME on all platforms for now. r=cpearce

This commit is contained in:
Stephen Pohl 2015-03-19 22:59:49 -04:00
Родитель 90c1248342
Коммит b8c729938b
2 изменённых файлов: 3 добавлений и 12 удалений

Просмотреть файл

@ -47,11 +47,7 @@ this.GMPUtils = {
*/
_isPluginSupported: function(aPlugin) {
if (aPlugin.id == EME_ADOBE_ID) {
if (Services.appinfo.OS == "WINNT") {
return Services.sysinfo.getPropertyAsInt32("version") >= 6;
} else {
return false;
}
return false;
}
return true;
},

Просмотреть файл

@ -375,13 +375,8 @@ add_task(function* testEmeSupport() {
let doc = gManagerWindow.document;
let item = get_addon_element(gManagerWindow, addon.id);
if (addon.id == GMPScope.EME_ADOBE_ID) {
if (Services.appinfo.OS == "WINNT" &&
Services.sysinfo.getPropertyAsInt32("version") >= 6) {
Assert.ok(item, "Adobe EME supported, found add-on element.");
} else {
Assert.ok(!item,
"Adobe EME not supported, couldn't find add-on element.");
}
Assert.ok(!item,
"Adobe EME not supported, couldn't find add-on element.");
} else {
Assert.ok(item, "Found add-on element.");
}