tenfourfox/ipc/ipdl/test/cxx/PTestSanity.ipdl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
374 B
Plaintext

namespace mozilla {
namespace _ipdltest {
protocol PTestSanity {
child:
Ping(int zero, float zeroPtFive, int8_t dummy);
__delete__();
parent:
Pong(int one, float zeroPtTwoFive, uint8_t dummy);
state PING:
send Ping goto PONG;
state PONG:
recv Pong goto DEAD;
state DEAD:
send __delete__;
};
} // namespace mozilla
} // namespace _ipdltest