Bug 1309463 - Fix check for supported EME platforms. r=mconley

This commit is contained in:
Dale Harvey 2016-10-20 21:17:50 +01:00
Родитель 5ab561d95b
Коммит ef9b4e1f0a
1 изменённых файлов: 0 добавлений и 17 удалений

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

@ -39,18 +39,6 @@ XPCOMUtils.defineLazyGetter(this, "gCertUtils", function() {
return temp;
});
XPCOMUtils.defineLazyGetter(this, "isXPOrVista64", function () {
let os = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULRuntime).OS;
if (os != "WINNT") {
return false;
}
let sysInfo = Cc["@mozilla.org/system-info;1"].getService(Ci.nsIPropertyBag2);
if (parseFloat(sysInfo.getProperty("version")) < 6) {
return true;
}
return Services.appinfo.is64Bit;
});
XPCOMUtils.defineLazyModuleGetter(this, "UpdateUtils",
"resource://gre/modules/UpdateUtils.jsm");
@ -241,11 +229,6 @@ GMPInstallManager.prototype = {
return false;
}
if (gmpAddon.isEME && isXPOrVista64) {
log.info("Addon |" + gmpAddon.id + "| not supported on this platform.");
return false;
}
// Do not install from fallback if already installed as it
// may be a downgrade
if (usedFallback && gmpAddon.isUpdate) {