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