tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

PTestDescendant.ipdl (440B)


      1 include protocol PTestDescendantSub;
      2 include protocol PTestDescendantSubsub;
      3 
      4 namespace mozilla {
      5 namespace _ipdltest {
      6 
      7 [ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
      8 async protocol PTestDescendant {
      9     manages PTestDescendantSub; 
     10 child:
     11     async PTestDescendantSub(nullable PTestDescendantSubsub dummy);
     12 
     13     async Test(PTestDescendantSubsub a);
     14 
     15     async __delete__();
     16 
     17 parent:
     18     async Ok(PTestDescendantSubsub a);
     19 };
     20 
     21 }
     22 }