mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
17 lines
240 B
Text
17 lines
240 B
Text
include protocol PTestBadActor;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
intr protocol PTestBadActorSub {
|
|
manager PTestBadActor;
|
|
|
|
child:
|
|
intr __delete__();
|
|
|
|
parent:
|
|
async Ping();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|