dom/webidl/InterAppMessagePort.webidl

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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;
    24 };

mercurial