diff --git a/b2g/installer/package-manifest.in b/b2g/installer/package-manifest.in index f5dc5cbf0347..a463c201dc7d 100644 --- a/b2g/installer/package-manifest.in +++ b/b2g/installer/package-manifest.in @@ -195,7 +195,6 @@ @BINPATH@/components/dom_indexeddb.xpt @BINPATH@/components/dom_offline.xpt @BINPATH@/components/dom_payment.xpt -@BINPATH@/components/dom_push.xpt @BINPATH@/components/dom_json.xpt @BINPATH@/components/dom_browserelement.xpt @BINPATH@/components/dom_messages.xpt diff --git a/browser/app/blocklist.xml b/browser/app/blocklist.xml index c28da7cd33c1..c9dc6eaeddab 100644 --- a/browser/app/blocklist.xml +++ b/browser/app/blocklist.xml @@ -1,5 +1,5 @@ - + @@ -135,6 +135,10 @@ + + + + diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 091c4c5fa5c3..2a143c12d6a6 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -335,6 +335,9 @@ pref("browser.download.manager.quitBehavior", 0); pref("browser.download.manager.scanWhenDone", true); pref("browser.download.manager.resumeOnWakeDelay", 10000); +// Enables the asynchronous Downloads API in the Downloads Panel. +pref("browser.download.useJSTransfer", false); + // This allows disabling the Downloads Panel in favor of the old interface. pref("browser.download.useToolkitUI", false); diff --git a/browser/base/content/browser-sets.inc b/browser/base/content/browser-sets.inc index e17d5252e879..57d0356c0e4e 100644 --- a/browser/base/content/browser-sets.inc +++ b/browser/base/content/browser-sets.inc @@ -96,7 +96,7 @@