tor-browser

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

PTestEndpointOpensOpened.ipdl (578B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2  * License, v. 2.0. If a copy of the MPL was not distributed with this
      3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 namespace mozilla {
      6 namespace _ipdltest {
      7 
      8 // (Opens protocols can have different semantics than the endpoints
      9 // that opened them)
     10 [ChildProc=any, ChildImpl=virtual, ParentImpl=virtual] 
     11 sync protocol PTestEndpointOpensOpened {
     12 child:
     13   async Hi();
     14 
     15 parent:
     16   async Hello();
     17   sync HelloSync();
     18   async __delete__();
     19 };
     20 
     21 }  // namespace _ipdltest
     22 }  // namespace mozilla