mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
This commit is contained in:
parent
85045bf6be
commit
c9b411d6cd
3891 changed files with 0 additions and 428084 deletions
|
|
@ -1,46 +0,0 @@
|
|||
// Bits and pieces copied from toolkit/components/search/tests/xpcshell/head_search.js
|
||||
|
||||
var { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
||||
|
||||
Cu.import("resource://gre/modules/Services.jsm");
|
||||
Cu.import("resource://gre/modules/Task.jsm");
|
||||
|
||||
/**
|
||||
* Adds test engines and returns a promise resolved when they are installed.
|
||||
*
|
||||
* The engines are added in the given order.
|
||||
*
|
||||
* @param aItems
|
||||
* Array of objects with the following properties:
|
||||
* {
|
||||
* name: Engine name, used to wait for it to be loaded.
|
||||
* details: Array containing the parameters of addEngineWithDetails,
|
||||
* except for the engine name. Alternative to xmlFileName.
|
||||
* }
|
||||
*/
|
||||
var addTestEngines = Task.async(function* (aItems) {
|
||||
let engines = [];
|
||||
|
||||
for (let item of aItems) {
|
||||
yield new Promise((resolve, reject) => {
|
||||
Services.obs.addObserver(function obs(subject, topic, data) {
|
||||
try {
|
||||
let engine = subject.QueryInterface(Ci.nsISearchEngine);
|
||||
if (data != "engine-added" || engine.name != item.name) {
|
||||
return;
|
||||
}
|
||||
|
||||
Services.obs.removeObserver(obs, "browser-search-engine-modified");
|
||||
engines.push(engine);
|
||||
resolve();
|
||||
} catch (ex) {
|
||||
reject(ex);
|
||||
}
|
||||
}, "browser-search-engine-modified", false);
|
||||
|
||||
Services.search.addEngineWithDetails(item.name, ...item.details);
|
||||
});
|
||||
}
|
||||
|
||||
return engines;
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue