blob: 03bbc7f886ca12ff0a2bcc92c1ebac173fa95c85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include protocol PTestMultiMgrsLeft;
include protocol PTestMultiMgrsRight;
namespace mozilla {
namespace _ipdltest {
[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
protocol PTestMultiMgrsBottom {
manager PTestMultiMgrsLeft or PTestMultiMgrsRight;
child:
async __delete__();
};
} // namespace _ipdltest
} // namespace mozilla
|