-1:000000000000 | 0:4f09de8381e1 |
---|---|
1 include protocol PTestMultiMgrs; | |
2 include protocol PTestMultiMgrsBottom; | |
3 | |
4 namespace mozilla { | |
5 namespace _ipdltest { | |
6 | |
7 protocol PTestMultiMgrsRight { | |
8 manager PTestMultiMgrs; | |
9 | |
10 manages PTestMultiMgrsBottom; | |
11 | |
12 child: | |
13 PTestMultiMgrsBottom(); | |
14 __delete__(); | |
15 | |
16 state START: | |
17 send PTestMultiMgrsBottom goto DONE; | |
18 | |
19 state DONE: | |
20 send __delete__; | |
21 }; | |
22 | |
23 } // namespace _ipdltest | |
24 } // namespace mozilla |