-1:000000000000 | 0:d69f4412a25e |
---|---|
1 include protocol PTestSelfManageRoot; | |
2 | |
3 namespace mozilla { | |
4 namespace _ipdltest { | |
5 | |
6 | |
7 protocol PTestSelfManage { | |
8 manager PTestSelfManageRoot or PTestSelfManage; | |
9 manages PTestSelfManage; | |
10 | |
11 child: | |
12 PTestSelfManage(); | |
13 __delete__(); | |
14 | |
15 state LIVE: | |
16 send PTestSelfManage goto LIVE; | |
17 send __delete__; | |
18 }; | |
19 | |
20 | |
21 } // namespace mozilla | |
22 } // namespace _ipdltest |