mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
25 lines
384 B
Text
25 lines
384 B
Text
include protocol PTestOpensOpened;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestOpens {
|
|
// This channel is opened and parked on a non-main thread
|
|
child opens PTestOpensOpened;
|
|
|
|
child:
|
|
async Start();
|
|
|
|
parent:
|
|
async __delete__();
|
|
|
|
state START:
|
|
send Start goto DEAD;
|
|
state DEAD:
|
|
recv __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|