Bug 1388946 Part 2 Disable legacy extensions by default r=kmag

Also bump the xpi database schema version to force compatibility
recomputation (since we're not changing the application version number)

MozReview-Commit-ID: vVFIWmtN5v

--HG--
extra : rebase_source : 6e3e9a534aa390887573e538fa0bf14dd05dca50
This commit is contained in:
Andrew Swan 2017-07-31 16:06:08 -07:00
Родитель 51e91c702d
Коммит 7b6925f69a
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1566,6 +1566,8 @@ pref("extensions.interposition.prefetching", true);
pref("extensions.allow-non-mpc-extensions", false);
#endif
pref("extensions.legacy.enabled", false);
// Enable blocking of e10s and e10s-multi for add-on users on beta/release.
#if defined(RELEASE_OR_BETA) && !defined(MOZ_DEV_EDITION)
pref("extensions.e10sBlocksEnabling", true);

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

@ -189,7 +189,7 @@ const TOOLKIT_ID = "toolkit@mozilla.org";
const XPI_SIGNATURE_CHECK_PERIOD = 24 * 60 * 60;
XPCOMUtils.defineConstant(this, "DB_SCHEMA", 22);
XPCOMUtils.defineConstant(this, "DB_SCHEMA", 23);
XPCOMUtils.defineLazyPreferenceGetter(this, "ALLOW_NON_MPC", PREF_ALLOW_NON_MPC);