diff -r 000000000000 -r 6474c204b198 ipc/ipdl/test/cxx/PTestMultiMgrsLeft.ipdl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ipc/ipdl/test/cxx/PTestMultiMgrsLeft.ipdl Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,24 @@ +include protocol PTestMultiMgrs; +include protocol PTestMultiMgrsBottom; + +namespace mozilla { +namespace _ipdltest { + +protocol PTestMultiMgrsLeft { + manager PTestMultiMgrs; + + manages PTestMultiMgrsBottom; + +child: + PTestMultiMgrsBottom(); + __delete__(); + +state START: + send PTestMultiMgrsBottom goto DONE; + +state DONE: + send __delete__; +}; + +} // namespace _ipdltest +} // namespace mozilla