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

32 строки
472 B
Plaintext

include protocol PTestDescSub;
include protocol PTestDescSubsub;
namespace mozilla {
namespace _ipdltest {
intr protocol PTestDesc {
manages PTestDescSub;
child:
intr 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__;
};
}
}