mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
18 lines
323 B
Text
18 lines
323 B
Text
include protocol PTestMultiMgrsLeft;
|
|
include protocol PTestMultiMgrsRight;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestMultiMgrsBottom {
|
|
manager PTestMultiMgrsLeft or PTestMultiMgrsRight;
|
|
|
|
child:
|
|
async __delete__();
|
|
|
|
state DOA:
|
|
send __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|