23 lines
458 B
Text
23 lines
458 B
Text
include protocol PTestMultiMgrsLeft;
|
|
include protocol PTestMultiMgrsRight;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
|
|
protocol PTestMultiMgrs {
|
|
manages PTestMultiMgrsLeft;
|
|
manages PTestMultiMgrsRight;
|
|
|
|
parent:
|
|
async OK();
|
|
|
|
child:
|
|
async PTestMultiMgrsLeft();
|
|
async PTestMultiMgrsRight();
|
|
async Check();
|
|
async __delete__();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|