blob: 174ada5ca32facbbdf53e65e7be4d31f003109ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include protocol PTestMultiMgrs;
include protocol PTestMultiMgrsBottom;
include "mozilla/_ipdltest/TestMultiMgrs.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestMultiMgrsRightChild", ParentImpl="TestMultiMgrsRightParent"]
protocol PTestMultiMgrsRight {
manager PTestMultiMgrs;
manages PTestMultiMgrsBottom;
child:
async PTestMultiMgrsBottom();
async __delete__();
};
} // namespace _ipdltest
} // namespace mozilla
|