mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
19 lines
338 B
Text
19 lines
338 B
Text
include protocol PTestManyChildAllocsSub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestManyChildAllocs {
|
|
manages PTestManyChildAllocsSub;
|
|
|
|
child:
|
|
async Go(); // start allocating
|
|
|
|
parent:
|
|
async Done();
|
|
|
|
async PTestManyChildAllocsSub();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|