diff -r 000000000000 -r 6474c204b198 ipc/ipdl/test/cxx/PTestSanity.ipdl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ipc/ipdl/test/cxx/PTestSanity.ipdl Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,28 @@ + +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