summaryrefslogtreecommitdiff
path: root/toolkit
Commit message (Collapse)AuthorAge
* Merge branch 'master' into 816wolfbeast2019-04-05
|\
| * Remove crashreporter toolkit files.wolfbeast2019-04-01
| | | | | | | | Resolves #20
| * Unhook CR exception handler.wolfbeast2019-04-01
| | | | | | | | Tag #20
| * Issue #187: Remove solaris 1st party code OS checks.wolfbeast2019-03-30
| |
| * Issue #187: Remove solaris conditional code.wolfbeast2019-03-30
| |
| * Replace unsupported `null` default values with an empty string.wolfbeast2019-03-28
| | | | | | | | Fixes #1028
| * Merge pull request #834 from g4jc/remove_contextidMoonchild2019-03-25
| |\ | | | | | | Issue #756 - Remove Contextual Identity
| | * Issue #756 - Remove Contextual Identity from UnifiedCompleteGaming4JC2019-03-18
| | | | | | | | | | | | reverts m-c 1287866
| | * Issue #756 - Remove contextual identity from BackgroundPageThumbs.jsmGaming4JC2019-03-18
| | | | | | | | | | | | reverts m-c 1279568, 1309699, 1310112
| * | Remove obsolete getPref helpers.Ascrod2019-03-24
| | |
| * | Check for osint argument when checking for greomni and appomni arguments.wolfbeast2019-03-23
| |/ | | | | | | Specifying both is invalid and unsupported.
| * Don't include nsDownloadManagerUI if the Communicator version is usedMatt A. Tobin2019-03-06
| | | | | | | | Maintain backwards compatibility with MOZ_SUITE
| * Revert "Don't include nsDownloadManagerUI if the Communicator version is used"Matt A. Tobin2019-03-06
| | | | | | | | This reverts commit 853fe00ba0cb91d564031706ef82038e9a4619ed.
| * Don't include nsDownloadManagerUI if the Communicator version is usedMatt A. Tobin2019-03-06
| | | | | | | | Maintain backwards compatibility with MOZ_SUITE
| * Remove e10s code from browser widget.wolfbeast2019-03-06
| | | | | | | | | | | | | | In case there are still callers to it (likely from the FE), `isRemoteBrowser` is stubbed to always return false for now. Tag #953.
| * Add hover state arrow images.wolfbeast2019-03-03
| | | | | | | | This fixes #981
| * Make the Auth prompt DOS protection a browser-element opt-in feature.wolfbeast2019-03-01
| |
| * WIP fix 1wolfbeast2019-02-28
| |
| * Remove error table with unspecified errors.wolfbeast2019-02-21
| | | | | | | | Tag #145
| * Restore building of common-standalone lib for updater.wolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove reference to standalone component.wolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove maintenance service bits from nsUpdateDriverwolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove toolkit/components/maintenanceservice/wolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove Non ifdef'd service code from toolkit/mozapps/updater/updater.cppwolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove maintenance service code from nsUpdateService and related.wolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove conditional MOZ_MAINTENANCE_SERVICE codewolfbeast2019-02-20
| | | | | | | | Tag #145
| * Remove the WebExtension Add-on Manager from our tree.wolfbeast2019-02-13
| | | | | | | | Tag #936
| * Remove WebExtension support from the platform.wolfbeast2019-02-13
| | | | | | | | | | | | - Conditional code - WE APIs - WE toolkit theming
| * Restore app.update.url.override preference.wolfbeast2019-02-12
| |
| * Include blankthumb in the correct file.wolfbeast2019-02-05
| |
| * Merge branch 'cycle_collector-work'wolfbeast2019-02-03
| |\
| | * [AM] Remove spurious warning for staged cleanup.wolfbeast2019-01-30
| | | | | | | | | | | | This fixes #773.
| | * Merge branch 'master' into cycle_collector-workwolfbeast2019-01-29
| | |\
| | * | Remove NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTSwolfbeast2019-01-18
| | | |
* | | | Stage 1-4: Update testsTooru Fujisawa2019-02-03
|/ / /
* | | Merge pull request #954 from MoonchildProductions/TychoEME-workMoonchild2019-01-31
|\ \ \ | | | | | | | | [TychoAM] Fix GMP* so that EME works in Basilisk
| * | | [TychoAM] Fix GMP* so that EME works in BasiliskMatt A. Tobin2019-01-29
| | |/ | |/| | | | | | | Also, keep WebExAM working for the moment
* | | Merge pull request #952 from adeshkp/remove-telemetry-jsMoonchild2019-01-31
|\ \ \ | | | | | | | | Remove telemetry leftovers from JS engine.
| * | | Remove telemetry leftovers from JS engine.adeshkp2019-01-30
| |/ /
* / / [AM] Remove spurious warning for staged cleanup.wolfbeast2019-01-30
|/ / | | | | | | This fixes #773.
* | Reduce number of allocations in AutoStopwatchDavid Teller2019-01-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch fixes two related issues. 1. The AutoStopwatch uses a stack-allocated `mozilla::Vector` to communicate with its callback during each compartment switch. This vector was designed to allow its contents to be stack-allocated but they turned out to be accidentally heap-allocated. 2. During each tick, the stopwatch fills a vector `recentGroups_`. This vector always started with minimal capacity and had to grow repeatedly as groups were added, causing repeated reallocations. This patch preallocates `recentGroups_` to have the same capacity as the previous tick. We expect that this should eventually reach a stable size that closely matches the actual needs of the process.
* | Revert "Reduce number of allocations in AutoStopwatch"wolfbeast2019-01-29
| | | | | | | | This reverts commit 3476c1d60ec29c5497123194acd7a9310b1023d2.
* | Reduce number of allocations in AutoStopwatchDavid Teller2019-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch fixes two related issues. 1. The AutoStopwatch uses a stack-allocated `mozilla::Vector` to communicate with its callback during each compartment switch. This vector was designed to allow its contents to be stack-allocated but they turned out to be accidentally heap-allocated. 2. During each tick, the stopwatch fills a vector `recentGroups_`. This vector always started with minimal capacity and had to grow repeatedly as groups were added, causing repeated reallocations. This patch preallocates `recentGroups_` to have the same capacity as the previous tick. We expect that this should eventually reach a stable size that closely matches the actual needs of the process.
* | Remove remote add-on debugging control.wolfbeast2019-01-28
|/
* [WebExAM] Use proper application name in WebExtension API error message.wolfbeast2019-01-14
|
* Telemetry: Remove stubs and related codeadeshkp2019-01-12
|
* [WebExAM] Properly handle the add-on name in case it's localizedJustOff2019-01-06
|
* Add performance warnings to Deprecated module.wolfbeast2018-12-24
| | | | | | | | | | | Adds a dedicated handler for performance warnings to be logged to consoles if known performance-impacting methods are called. Search service init is changed from a deprecation warning to a performance warning for synchronous init. This also re-enables the warning for the Basilisk & Co. search service initialization which was previously removed in [a930a79] See also the discussion on #916.
* Return an empty set if getting recipes for host fails.wolfbeast2018-12-21
| | | | | This avoids errors when _recipeManager is not (yet) available. This resolves #496.
* Merge pull request #911 from trav90/code-cleanupMoonchild2018-12-16
|\ | | | | Remove AndroidMediaDecoder