dom/webidl/InterAppMessagePort.webidl

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     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