summaryrefslogtreecommitdiffstats
path: root/application/basilisk/components/webextensions/ext-c-omnibox.js
blob: 3b9b6e2f7115382bba8d86e6993e6831b0c22280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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(),
    },
  };
});