Bug 1824753 [wpt PR 39216] - [FLEDGE] Add WPT test that FLEDGE is not allowed in...
[gecko.git] / dom / clients / manager / PClientHandle.ipdl
blobeb6a1823909340c5cc785a58e022d3ca4ec74f44
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 file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 include protocol PClientManager;
6 include protocol PClientHandleOp;
7 include ClientIPCTypes;
9 include "mozilla/ipc/ProtocolMessageUtils.h";
11 namespace mozilla {
12 namespace dom {
14 [ManualDealloc, ChildImpl=virtual, ParentImpl=virtual]
15 protocol PClientHandle
17   manager PClientManager;
19   manages PClientHandleOp;
21 parent:
22   async Teardown();
24   async PClientHandleOp(ClientOpConstructorArgs aArgs);
26 child:
27   async ExecutionReady(IPCClientInfo aClientInfo);
29   async __delete__();
32 } // namespace dom
33 } // namespace mozilla