diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-05-08 19:33:09 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-05-08 19:33:09 -0400 |
commit | 79834c9de4ae092d7513a5de43325d0a4fafdd48 (patch) | |
tree | 5247c0940be2ed2f94e2daf8a43c1d393573e379 | |
parent | e502c09aa67bd005b7e6b6fa6e7e26e0681f6cf9 (diff) | |
download | iceweasel-uxp-79834c9de4ae092d7513a5de43325d0a4fafdd48.tar.gz |
backport UXP - Remove FxAccounts front-end module references
-rw-r--r-- | app/profile/iceweasel-uxp.js | 42 | ||||
-rwxr-xr-x | base/content/global-scripts.inc | 2 | ||||
-rw-r--r-- | base/content/web-panels.xul | 1 | ||||
-rw-r--r-- | installer/allowed-dupes.mn | 2 | ||||
-rw-r--r-- | installer/package-manifest.in | 2 | ||||
-rw-r--r-- | modules/AboutHome.jsm | 2 |
6 files changed, 0 insertions, 51 deletions
diff --git a/app/profile/iceweasel-uxp.js b/app/profile/iceweasel-uxp.js index 3838887..f724f9e 100644 --- a/app/profile/iceweasel-uxp.js +++ b/app/profile/iceweasel-uxp.js @@ -1125,53 +1125,11 @@ pref("browser.uiCustomization.debug", false); // CustomizableUI state of the browser's user interface pref("browser.uiCustomization.state", ""); -// The remote content URL shown for FxA signup. Must use HTTPS. -pref("identity.fxaccounts.remote.signup.uri", ""); - -// The URL where remote content that forces re-authentication for Firefox Accounts -// should be fetched. Must use HTTPS. -pref("identity.fxaccounts.remote.force_auth.uri", ""); - -// The remote content URL shown for signin in. Must use HTTPS. -pref("identity.fxaccounts.remote.signin.uri", ""); - -// The remote content URL where FxAccountsWebChannel messages originate. -pref("identity.fxaccounts.remote.webchannel.uri", ""); - -// The value of the context query parameter passed in some fxa requests when config -// discovery is enabled. -pref("identity.fxaccounts.contextParam", "fx_desktop_v3"); - -// The URL we take the user to when they opt to "manage" their Firefox Account. -// Note that this will always need to be in the same TLD as the -// "identity.fxaccounts.remote.signup.uri" pref. -pref("identity.fxaccounts.settings.uri", ""); - -// The remote URL of the FxA Profile Server -pref("identity.fxaccounts.remote.profile.uri", ""); - -// The remote URL of the FxA OAuth Server -pref("identity.fxaccounts.remote.oauth.uri", ""); - -// Whether we display profile images in the UI or not. -pref("identity.fxaccounts.profile_image.enabled", true); - -// Token server used by the FxA Sync identity. -pref("identity.sync.tokenserver.uri", ""); - // URLs for promo links to mobile browsers. Note that consumers are expected to // append a value for utm_campaign. pref("identity.mobilepromo.android", ""); pref("identity.mobilepromo.ios", ""); -// Migrate any existing Firefox Account data from the default profile to the -// Developer Edition profile. -#ifdef MOZ_DEV_EDITION -pref("identity.fxaccounts.migrateToDevEdition", true); -#else -pref("identity.fxaccounts.migrateToDevEdition", false); -#endif - // On GTK, we now default to showing the menubar only when alt is pressed: #ifdef MOZ_WIDGET_GTK pref("ui.key.menuAccessKeyFocuses", true); diff --git a/base/content/global-scripts.inc b/base/content/global-scripts.inc index f12678a..be0c510 100755 --- a/base/content/global-scripts.inc +++ b/base/content/global-scripts.inc @@ -30,5 +30,3 @@ #ifdef MOZ_DATA_REPORTING <script type="application/javascript" src="chrome://browser/content/browser-data-submission-info-bar.js"/> #endif - -<script type="application/javascript" src="chrome://browser/content/browser-fxaccounts.js"/> diff --git a/base/content/web-panels.xul b/base/content/web-panels.xul index c13c58a..0c364df 100644 --- a/base/content/web-panels.xul +++ b/base/content/web-panels.xul @@ -23,7 +23,6 @@ <script type="application/javascript" src="chrome://global/content/contentAreaUtils.js"/> <script type="application/javascript" src="chrome://browser/content/browser.js"/> <script type="application/javascript" src="chrome://browser/content/browser-places.js"/> - <script type="application/javascript" src="chrome://browser/content/browser-fxaccounts.js"/> <script type="application/javascript" src="chrome://browser/content/nsContextMenu.js"/> <script type="application/javascript" src="chrome://browser/content/web-panels.js"/> diff --git a/installer/allowed-dupes.mn b/installer/allowed-dupes.mn index b196a0f..6a506f1 100644 --- a/installer/allowed-dupes.mn +++ b/installer/allowed-dupes.mn @@ -203,13 +203,11 @@ chrome/toolkit/skin/classic/mozapps/update/buttons.png chrome/toolkit/skin/classic/mozapps/update/downloadButtons.png chrome/toolkit/skin/classic/mozapps/xpinstall/xpinstallItemGeneric.png -components/FxAccountsPush.js crashreporter.app/Contents/Resources/English.lproj/MainMenu.nib/classes.nib crashreporter.app/Contents/Resources/English.lproj/MainMenuRTL.nib/classes.nib # firefox/firefox-bin is bug 658850 @MOZ_APP_NAME@ @MOZ_APP_NAME@-bin -modules/FxAccountsPush.js modules/commonjs/index.js modules/commonjs/sdk/ui/button/view/events.js modules/commonjs/sdk/ui/state/events.js diff --git a/installer/package-manifest.in b/installer/package-manifest.in index 2ac2388..8f21723 100644 --- a/installer/package-manifest.in +++ b/installer/package-manifest.in @@ -471,8 +471,6 @@ @RESPATH@/components/nsPrompter.js @RESPATH@/components/SyncComponents.manifest @RESPATH@/components/Weave.js -@RESPATH@/components/FxAccountsComponents.manifest -@RESPATH@/components/FxAccountsPush.js @RESPATH@/components/CaptivePortalDetectComponents.manifest @RESPATH@/components/captivedetect.js @RESPATH@/components/servicesComponents.manifest diff --git a/modules/AboutHome.jsm b/modules/AboutHome.jsm index 639194c..6714484 100644 --- a/modules/AboutHome.jsm +++ b/modules/AboutHome.jsm @@ -17,8 +17,6 @@ XPCOMUtils.defineLazyModuleGetter(this, "AppConstants", "resource://gre/modules/AppConstants.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "AutoMigrate", "resource:///modules/AutoMigrate.jsm"); -XPCOMUtils.defineLazyModuleGetter(this, "fxAccounts", - "resource://gre/modules/FxAccounts.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "PrivateBrowsingUtils", "resource://gre/modules/PrivateBrowsingUtils.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "Promise", |