michael@0: include protocol PTestSelfManage; michael@0: michael@0: namespace mozilla { michael@0: namespace _ipdltest { michael@0: michael@0: michael@0: protocol PTestSelfManageRoot { michael@0: manages PTestSelfManage; michael@0: michael@0: child: michael@0: PTestSelfManage(); michael@0: __delete__(); michael@0: michael@0: state LIVE: michael@0: send PTestSelfManage goto DEAD; michael@0: michael@0: state DEAD: michael@0: send __delete__; michael@0: }; michael@0: michael@0: michael@0: } // namespace mozilla michael@0: } // namespace _ipdltest