blob: 19f81a5ae79247db1f89ee7bb1d0b7f0ef2d9df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include protocol PTestSelfManageRoot;
include "mozilla/_ipdltest/TestSelfManageRoot.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestSelfManageChild", ParentImpl="TestSelfManageParent"]
protocol PTestSelfManage {
manager PTestSelfManageRoot or PTestSelfManage;
manages PTestSelfManage;
child:
async PTestSelfManage();
async __delete__();
};
} // namespace mozilla
} // namespace _ipdltest
|