mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
25 lines
362 B
Text
25 lines
362 B
Text
include protocol PTestBridgeMainSub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestBridgeSub {
|
|
child:
|
|
async Ping();
|
|
|
|
parent:
|
|
async BridgeEm();
|
|
async __delete__();
|
|
|
|
state START:
|
|
send Ping goto BRIDGEEM;
|
|
state BRIDGEEM:
|
|
recv BridgeEm goto DEAD;
|
|
state DEAD:
|
|
recv __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|