mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
80791dbb91
--HG-- extra : amend_source : 16f2cdec1408a17c071567b98c6072ebd4246eef
18 lines
618 B
Plaintext
18 lines
618 B
Plaintext
/* 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/. */
|
|
|
|
[Pref="dom.sysmsg.enabled",
|
|
JSImplementation="@mozilla.org/dom/activities/request-handler;1",
|
|
ChromeConstructor(DOMString id, optional ActivityOptions options),
|
|
ChromeOnly]
|
|
interface ActivityRequestHandler
|
|
{
|
|
[UnsafeInPrerendering]
|
|
void postResult(any result);
|
|
[UnsafeInPrerendering]
|
|
void postError(DOMString error);
|
|
[Pure, Cached, Frozen]
|
|
readonly attribute ActivityOptions source;
|
|
};
|