mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
24 lines
416 B
Text
24 lines
416 B
Text
|
|
include protocol PTestMultiMgrs;
|
||
|
|
include protocol PTestMultiMgrsBottom;
|
||
|
|
|
||
|
|
namespace mozilla {
|
||
|
|
namespace _ipdltest {
|
||
|
|
|
||
|
|
protocol PTestMultiMgrsLeft {
|
||
|
|
manager PTestMultiMgrs;
|
||
|
|
|
||
|
|
manages PTestMultiMgrsBottom;
|
||
|
|
|
||
|
|
child:
|
||
|
|
async PTestMultiMgrsBottom();
|
||
|
|
async __delete__();
|
||
|
|
|
||
|
|
state START:
|
||
|
|
send PTestMultiMgrsBottom goto DONE;
|
||
|
|
|
||
|
|
state DONE:
|
||
|
|
send __delete__;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace _ipdltest
|
||
|
|
} // namespace mozilla
|