mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
383 B
Plaintext
28 lines
383 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);
|
|
|
|
parent:
|
|
Ok(PTestDescSubsub a);
|
|
|
|
|
|
state START:
|
|
send Test goto ACK;
|
|
|
|
state ACK:
|
|
recv Ok goto ACK;
|
|
// delete
|
|
};
|
|
|
|
}
|
|
}
|