mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
19 lines
278 B
Text
19 lines
278 B
Text
|
|
include protocol PTestManyChildAllocs;
|
||
|
|
|
||
|
|
namespace mozilla {
|
||
|
|
namespace _ipdltest {
|
||
|
|
|
||
|
|
protocol PTestManyChildAllocsSub {
|
||
|
|
manager PTestManyChildAllocs;
|
||
|
|
|
||
|
|
child:
|
||
|
|
async __delete__();
|
||
|
|
|
||
|
|
parent:
|
||
|
|
async Hello();
|
||
|
|
|
||
|
|
// empty
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace _ipdltest
|
||
|
|
} // namespace mozilla
|