michael@0: include protocol PTestIndirectProtocolParamFirst; michael@0: include protocol PTestIndirectProtocolParamSecond; michael@0: michael@0: namespace mozilla { michael@0: namespace _ipdltest { michael@0: michael@0: sync protocol PTestIndirectProtocolParamManage { michael@0: manages PTestIndirectProtocolParamFirst; michael@0: manages PTestIndirectProtocolParamSecond; michael@0: both: michael@0: PTestIndirectProtocolParamFirst(); michael@0: PTestIndirectProtocolParamSecond(); michael@0: __delete__(); michael@0: }; michael@0: michael@0: } michael@0: }