gecko/ipc/ipdl/test/cxx/PTestDesc.ipdl

28 lines
359 B
Plaintext
Raw Normal View History

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
};
}
}