summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestIndirectProtocolParamManage.ipdl
blob: db7c828a228483a31c30fae114795d95bc826a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include protocol PTestIndirectProtocolParamFirst;
include protocol PTestIndirectProtocolParamSecond;

namespace mozilla {
namespace _ipdltest {

sync protocol PTestIndirectProtocolParamManage {
    manages PTestIndirectProtocolParamFirst;
    manages PTestIndirectProtocolParamSecond;
both:
    async PTestIndirectProtocolParamFirst();
    async PTestIndirectProtocolParamSecond();
    async __delete__();
};

}
}