summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/feature/accounts/src/main/assets/extensions/fxawebchannel/fxawebchannel.js
blob: 16614d30695867b0b9c137da836882714ce98a52 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

/*
Establish communication with native application.
*/
let port = browser.runtime.connectNative("mozacWebchannel");

/*
Handle messages from native application, dispatch them to FxA via an event.
*/
port.onMessage.addListener(event => {
  window.dispatchEvent(
    new CustomEvent("WebChannelMessageToContent", {
      detail: JSON.stringify(event),
    })
  );
});

/*
Handle messages from FxA. Messages are posted to the native application for processing.
*/
window.addEventListener("WebChannelMessageToChrome", function (e) {
  const detail = JSON.parse(e.detail);
  port.postMessage(detail);
});