mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
470 B
Plaintext
32 lines
470 B
Plaintext
include protocol PTestDescSub;
|
|
include protocol PTestDescSubsub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
rpc protocol PTestDesc {
|
|
manages PTestDescSub;
|
|
child:
|
|
rpc PTestDescSub(nullable PTestDescSubsub dummy);
|
|
|
|
Test(PTestDescSubsub a);
|
|
|
|
__delete__();
|
|
|
|
parent:
|
|
Ok(PTestDescSubsub a);
|
|
|
|
|
|
state CONSTRUCT:
|
|
call PTestDescSub goto TEST;
|
|
state TEST:
|
|
send Test goto ACK;
|
|
state ACK:
|
|
recv Ok goto DEAD;
|
|
state DEAD:
|
|
send __delete__;
|
|
};
|
|
|
|
}
|
|
}
|