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