blob: 4a34af2e52c1b01d0c393759279aee838dfa0ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include protocol PTestManyChildAllocs;
namespace mozilla {
namespace _ipdltest {
[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
protocol PTestManyChildAllocsSub {
manager PTestManyChildAllocs;
child:
async __delete__();
parent:
async Hello();
};
} // namespace _ipdltest
} // namespace mozilla
|