gecko/ipc/ipdl/test/cxx/PTestMultiMgrsRight.ipdl
Chris Jones e86369ebb5 Bug 540111, part 5: IPDL/C++ test of multi-managers. r=bnewman
--HG--
extra : transplant_source : %3B%83%10%FC%C3%5D%F7%22%B4%07WB7u%F6%8A4%D8%16%01
2010-01-26 22:56:14 -06:00

25 lines
419 B
Plaintext

include protocol "PTestMultiMgrs.ipdl";
include protocol "PTestMultiMgrsBottom.ipdl";
namespace mozilla {
namespace _ipdltest {
protocol PTestMultiMgrsRight {
manager PTestMultiMgrs;
manages PTestMultiMgrsBottom;
child:
PTestMultiMgrsBottom();
__delete__();
state START:
send PTestMultiMgrsBottom goto DONE;
state DONE:
send __delete__;
};
} // namespace _ipdltest
} // namespace mozilla