17 lines
358 B
Text
17 lines
358 B
Text
include protocol PTestSelfManageRoot;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
|
|
protocol PTestSelfManage {
|
|
manager PTestSelfManageRoot or PTestSelfManage;
|
|
manages PTestSelfManage;
|
|
|
|
child:
|
|
async PTestSelfManage();
|
|
async __delete__();
|
|
};
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|