18 lines
391 B
Text
18 lines
391 B
Text
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
|