diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 03:32:58 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 03:32:58 -0500 |
commit | e72ef92b5bdc43cd2584198e2e54e951b70299e8 (patch) | |
tree | 01ceb4a897c33eca9e7ccf2bc3aefbe530169fe5 /application/basilisk/components/extensions/ext-c-omnibox.js | |
parent | 0d19b77d3eaa5b8d837bf52c19759e68e42a1c4c (diff) | |
download | UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar.gz UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar.lz UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar.xz UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.zip |
Add Basilisk
Diffstat (limited to 'application/basilisk/components/extensions/ext-c-omnibox.js')
-rw-r--r-- | application/basilisk/components/extensions/ext-c-omnibox.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/application/basilisk/components/extensions/ext-c-omnibox.js b/application/basilisk/components/extensions/ext-c-omnibox.js new file mode 100644 index 000000000..3b9b6e2f7 --- /dev/null +++ b/application/basilisk/components/extensions/ext-c-omnibox.js @@ -0,0 +1,32 @@ +/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* vim: set sts=2 sw=2 et tw=80: */ +"use strict"; + +Cu.import("resource://gre/modules/ExtensionUtils.jsm"); + +var { + runSafeSyncWithoutClone, + SingletonEventManager, +} = ExtensionUtils; + +extensions.registerSchemaAPI("omnibox", "addon_child", context => { + return { + omnibox: { + onInputChanged: new SingletonEventManager(context, "omnibox.onInputChanged", fire => { + let listener = (text, id) => { + runSafeSyncWithoutClone(fire, text, suggestions => { + // TODO: Switch to using callParentFunctionNoReturn once bug 1314903 is fixed. + context.childManager.callParentAsyncFunction("omnibox_internal.addSuggestions", [ + id, + suggestions, + ]); + }); + }; + context.childManager.getParentEvent("omnibox_internal.onInputChanged").addListener(listener); + return () => { + context.childManager.getParentEvent("omnibox_internal.onInputChanged").removeListener(listener); + }; + }).api(), + }, + }; +}); |