PTestEndpointOpens.ipdl (565B)
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 include protocol PTestEndpointOpensOpened; 6 7 namespace mozilla { 8 namespace _ipdltest { 9 10 [ChildProc=any, ChildImpl=virtual, ParentImpl=virtual] 11 protocol PTestEndpointOpens { 12 child: 13 async Start(); 14 15 parent: 16 async StartSubprotocol(Endpoint<PTestEndpointOpensOpenedParent> endpoint); 17 18 async __delete__(); 19 }; 20 21 } // namespace _ipdltest 22 } // namespace mozilla