PTestMultiMgrs.ipdl (458B)
1 include protocol PTestMultiMgrsLeft; 2 include protocol PTestMultiMgrsRight; 3 4 namespace mozilla { 5 namespace _ipdltest { 6 7 [ChildProc=any, ChildImpl=virtual, ParentImpl=virtual] 8 protocol PTestMultiMgrs { 9 manages PTestMultiMgrsLeft; 10 manages PTestMultiMgrsRight; 11 12 parent: 13 async OK(); 14 15 child: 16 async PTestMultiMgrsLeft(); 17 async PTestMultiMgrsRight(); 18 async Check(); 19 async __delete__(); 20 }; 21 22 } // namespace _ipdltest 23 } // namespace mozilla