michael@0: michael@0: namespace mozilla { michael@0: namespace _ipdltest { michael@0: michael@0: michael@0: sync protocol PTestSyncError { michael@0: michael@0: child: michael@0: Start(); michael@0: michael@0: parent: michael@0: sync Error(); michael@0: __delete__(); michael@0: michael@0: michael@0: state START: michael@0: send Start goto SYNC_ERROR; michael@0: michael@0: state SYNC_ERROR: michael@0: recv Error goto DEAD; michael@0: michael@0: state DEAD: michael@0: recv __delete__; michael@0: }; michael@0: michael@0: michael@0: } // namespace mozilla michael@0: } // namespace _ipdltest