gecko-dev/ipc/ipdl/test/cxx/PTestBridgeSub.ipdl

26 строки
344 B
Plaintext

include protocol PTestBridgeMainSub;
namespace mozilla {
namespace _ipdltest {
protocol PTestBridgeSub {
child:
Ping();
parent:
BridgeEm();
__delete__();
state START:
send Ping goto BRIDGEEM;
state BRIDGEEM:
recv BridgeEm goto DEAD;
state DEAD:
recv __delete__;
};
} // namespace mozilla
} // namespace _ipdltest