mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-15 22:44:13 +00:00
28 lines
359 B
Plaintext
28 lines
359 B
Plaintext
include protocol "PTestDescSub.ipdl";
|
|
include protocol "PTestDescSubsub.ipdl";
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestDesc {
|
|
manages PTestDescSub;
|
|
child:
|
|
PTestDescSub();
|
|
|
|
Test(PTestDescSubsub a);
|
|
|
|
parent:
|
|
Ok(PTestDescSubsub a);
|
|
|
|
|
|
state START:
|
|
send Test goto ACK;
|
|
|
|
state ACK:
|
|
recv Ok goto ACK;
|
|
// delete
|
|
};
|
|
|
|
}
|
|
}
|