зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1309463 - Fix check for supported EME platforms. r=mconley
This commit is contained in:
Родитель
5ab561d95b
Коммит
ef9b4e1f0a
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче