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