PTestDescendantSub.ipdl (349B)
1 include protocol PTestDescendant; 2 include protocol PTestDescendantSubsub; 3 4 namespace mozilla { 5 namespace _ipdltest { 6 7 [ChildProc=any, ChildImpl=virtual, ParentImpl=virtual] 8 async protocol PTestDescendantSub { 9 manager PTestDescendant; 10 manages PTestDescendantSubsub; 11 12 child: 13 async __delete__(); 14 15 async PTestDescendantSubsub(); 16 }; 17 18 } 19 }