blob: 8d3c6f81b19c0f9cdfbecbc1fb96abcfef1e4b76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include protocol PTestIndirectProtocolParamFirst;
include protocol PTestIndirectProtocolParamSecond;
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl=virtual, ParentImpl=virtual]
sync protocol PTestIndirectProtocolParamManage {
manages PTestIndirectProtocolParamFirst;
manages PTestIndirectProtocolParamSecond;
both:
async PTestIndirectProtocolParamFirst();
async PTestIndirectProtocolParamSecond();
async __delete__();
};
}
}
|