mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
19 lines
484 B
Text
19 lines
484 B
Text
include protocol PTestIndirectProtocolParamManage;
|
|
// FIXME/bug 792908 protocol PTestIndirectProtocolParamSecond is
|
|
// already included in PTestIndirectProtocolParam.ipdlh
|
|
include protocol PTestIndirectProtocolParamSecond;
|
|
include PTestIndirectProtocolParam;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
sync protocol PTestIndirectProtocolParamFirst {
|
|
manager PTestIndirectProtocolParamManage;
|
|
parent:
|
|
sync Test(IndirectParamUnion actor);
|
|
both:
|
|
async __delete__();
|
|
};
|
|
|
|
}
|
|
}
|