Merge m-c to b2g-inbound.
[gecko.git] / dom / webidl / InterAppMessagePort.webidl
blob9f23f9b89e2f710a04fbbd460ee41ed68dd219ad
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 // TODO Bug 907060 Per off-line discussion, after the MessagePort is done
6 // at Bug 643325, we will start to refactorize the common logic of both
7 // Inter-App Communication and Shared Worker. For now, we hope to design an
8 // MozInterAppMessagePort to meet the timeline, which still follows exactly
9 // the same interface and semantic as the MessagePort is. In the future,
10 // we can then align it back to MessagePort with backward compatibility.
12 [HeaderFile="mozilla/dom/InterAppComm.h",
13  Func="mozilla::dom::InterAppComm::EnabledForScope",
14  Constructor(DOMString messagePortID),
15  JSImplementation="@mozilla.org/dom/inter-app-message-port;1"]
16 interface MozInterAppMessagePort : EventTarget {
17   void postMessage(any message);
19   void start();
21   void close();
23   attribute EventHandler onmessage;