blob: be85b1547b32e1875f8268d4eb54814d18f9d5dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include protocol PTestMultiMgrsLeft;
include protocol PTestMultiMgrsRight;
include "mozilla/_ipdltest/TestMultiMgrs.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestMultiMgrsBottomChild", ParentImpl="TestMultiMgrsBottomParent"]
protocol PTestMultiMgrsBottom {
manager PTestMultiMgrsLeft or PTestMultiMgrsRight;
child:
async __delete__();
};
} // namespace _ipdltest
} // namespace mozilla
|