gecko-dev/dom/serviceworkers/PServiceWorker.ipdl
Ben Kelly 6323d7c413 Bug 1459209 P8 Implement RemoteServiceWorkerImpl::PostMessage() across IPC and to the parent-side SWM. r=mrbkap
--HG--
extra : rebase_source : d38628cc7b8822b4213c8034f0c1dd783585ddfb
2018-07-09 16:02:40 -07:00

28 lines
552 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/. */
include protocol PBackground;
include ClientIPCTypes;
include DOMTypes;
namespace mozilla {
namespace dom {
protocol PServiceWorker
{
manager PBackground;
parent:
async Teardown();
async PostMessage(ClonedMessageData aClonedData, ClientInfoAndState aSource);
child:
async __delete__();
};
} // namespace dom
} // namespace mozilla