[Mypal] Add a configure flag to functionally disable personas at build time.

This commit is contained in:
Fedor 2019-08-01 03:18:06 +03:00
parent 77dc488eeb
commit 385757801a
6 changed files with 23 additions and 1 deletions

View File

@ -263,7 +263,7 @@ var AddonsMgrListener = {
onDisabled: function(aAddon) this.onUninstalled(),
};
#ifdef MOZ_PERSONAS
var LightWeightThemeWebInstaller = {
handleEvent: function (event) {
switch (event.type) {
@ -534,3 +534,4 @@ var LightweightThemeListener = {
this.updateStyleSheet("url(" + themeData.headerURL + ")");
},
};
#endif

View File

@ -1216,9 +1216,11 @@ var gBrowserInit = {
placesContext.addEventListener("popuphiding", updateEditUIVisibility, false);
#endif
#ifdef MOZ_PERSONAS
gBrowser.mPanelContainer.addEventListener("InstallBrowserTheme", LightWeightThemeWebInstaller, false, true);
gBrowser.mPanelContainer.addEventListener("PreviewBrowserTheme", LightWeightThemeWebInstaller, false, true);
gBrowser.mPanelContainer.addEventListener("ResetBrowserThemePreview", LightWeightThemeWebInstaller, false, true);
#endif
// Bug 666808 - AeroPeek support for e10s
if (!gMultiProcessBrowser) {

View File

@ -53,8 +53,10 @@
titlemodifier_privatebrowsing="&mainWindow.titlemodifier; &mainWindow.titlePrivateBrowsingSuffix;"
#endif
titlemenuseparator="&mainWindow.titlemodifiermenuseparator;"
#ifdef MOZ_PERSONAS
lightweightthemes="true"
lightweightthemesfooter="browser-bottombox"
#endif
windowtype="navigator:browser"
macanimationtype="document"
screenX="4" screenY="4"

View File

@ -36,3 +36,16 @@ MOZ_ARG_DISABLE_BOOL(sync,
MOZ_SERVICES_SYNC=,
MOZ_SERVICES_SYNC=1)
dnl ========================================================
dnl = Disable Lightweight Themes
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(personas,
[ --disable-personas Disable lightweight theme support],
MOZ_PERSONAS=,
MOZ_PERSONAS=1)
if test -n "$MOZ_PERSONAS"; then
AC_DEFINE(MOZ_PERSONAS)
fi
AC_SUBST(MOZ_PERSONAS)

View File

@ -46,6 +46,9 @@ MOZ_PHOENIX=1
# Browser Feature: Status bar Component
MOZ_BROWSER_STATUSBAR=1
# Lightweight Themes
MOZ_PERSONAS=1
# Browser Feature: Profile Migration Component
MOZ_PROFILE_MIGRATOR=

View File

@ -311,6 +311,7 @@ def old_configure_options(*options):
# Below are configure flags used by Pale Moon
'--disable-browser-statusbar',
'--disable-sync',
'--disable-personas',
# Below are configure flags used by Basilisk
'--disable-webextensions',