dom/webidl/InterAppMessagePort.webidl

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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