mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
17 lines
414 B
Text
17 lines
414 B
Text
|
|
include protocol PTestIndirectProtocolParamFirst;
|
||
|
|
include protocol PTestIndirectProtocolParamSecond;
|
||
|
|
|
||
|
|
namespace mozilla {
|
||
|
|
namespace _ipdltest {
|
||
|
|
|
||
|
|
sync protocol PTestIndirectProtocolParamManage {
|
||
|
|
manages PTestIndirectProtocolParamFirst;
|
||
|
|
manages PTestIndirectProtocolParamSecond;
|
||
|
|
both:
|
||
|
|
async PTestIndirectProtocolParamFirst();
|
||
|
|
async PTestIndirectProtocolParamSecond();
|
||
|
|
async __delete__();
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|