/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ include protocol PTestEndpointBridgeMainSub; include protocol PTestEndpointBridgeSub; namespace mozilla { namespace _ipdltest { protocol PTestEndpointBridgeMain { child spawns PTestEndpointBridgeSub; child: async Start(); parent: async Bridged(Endpoint endpoint); }; } // namespace mozilla } // namespace _ipdltest