1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestSelfManage.ipdl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +include protocol PTestSelfManageRoot; 1.5 + 1.6 +namespace mozilla { 1.7 +namespace _ipdltest { 1.8 + 1.9 + 1.10 +protocol PTestSelfManage { 1.11 + manager PTestSelfManageRoot or PTestSelfManage; 1.12 + manages PTestSelfManage; 1.13 + 1.14 +child: 1.15 + PTestSelfManage(); 1.16 + __delete__(); 1.17 + 1.18 +state LIVE: 1.19 + send PTestSelfManage goto LIVE; 1.20 + send __delete__; 1.21 +}; 1.22 + 1.23 + 1.24 +} // namespace mozilla 1.25 +} // namespace _ipdltest