1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestMultiMgrsRight.ipdl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +include protocol PTestMultiMgrs; 1.5 +include protocol PTestMultiMgrsBottom; 1.6 + 1.7 +namespace mozilla { 1.8 +namespace _ipdltest { 1.9 + 1.10 +protocol PTestMultiMgrsRight { 1.11 + manager PTestMultiMgrs; 1.12 + 1.13 + manages PTestMultiMgrsBottom; 1.14 + 1.15 +child: 1.16 + PTestMultiMgrsBottom(); 1.17 + __delete__(); 1.18 + 1.19 +state START: 1.20 + send PTestMultiMgrsBottom goto DONE; 1.21 + 1.22 +state DONE: 1.23 + send __delete__; 1.24 +}; 1.25 + 1.26 +} // namespace _ipdltest 1.27 +} // namespace mozilla