blob: 5bc9abf9869b57341794e3dd5104d2598d29e429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include protocol PTestMultiMgrsLeft;
include protocol PTestMultiMgrsRight;
namespace mozilla {
namespace _ipdltest {
protocol PTestMultiMgrs {
manages PTestMultiMgrsLeft;
manages PTestMultiMgrsRight;
parent:
async OK();
child:
async PTestMultiMgrsLeft();
async PTestMultiMgrsRight();
async Check();
async __delete__();
};
} // namespace _ipdltest
} // namespace mozilla
|