mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12c4024cd8
--HG-- extra : transplant_source : %04B6%5C%3A%ED3E%06o%90%1Bx%60%96b.%0F%27P
26 lines
344 B
Plaintext
26 lines
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
|