blob: 6f8a0e118722ce8a858ce5787baa8b341e3d0eab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include protocol PTestManyChildAllocsSub;
include "mozilla/_ipdltest/TestManyChildAllocs.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestManyChildAllocsChild", ParentImpl="TestManyChildAllocsParent"]
protocol PTestManyChildAllocs {
manages PTestManyChildAllocsSub;
child:
async Go(); // start allocating
parent:
async Done();
async PTestManyChildAllocsSub();
};
} // namespace _ipdltest
} // namespace mozilla
|