blob: 65272fa9919a6d48a4e11f95a543aece623bb6d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
include protocol PTestMultiMgrsLeft;
include protocol PTestMultiMgrsRight;
include "mozilla/_ipdltest/TestMultiMgrs.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestMultiMgrsChild", ParentImpl="TestMultiMgrsParent"]
protocol PTestMultiMgrs {
manages PTestMultiMgrsLeft;
manages PTestMultiMgrsRight;
parent:
async OK();
child:
async PTestMultiMgrsLeft();
async PTestMultiMgrsRight();
async Check();
async __delete__();
};
} // namespace _ipdltest
} // namespace mozilla
|