Dactyloidae/ipc/ipdl/test/cxx/PTestHighestPrio.ipdl

18 lines
325 B
Text

namespace mozilla {
namespace _ipdltest {
nested(upto inside_cpow) sync protocol PTestHighestPrio
{
parent:
nested(inside_cpow) async Msg1();
nested(inside_sync) sync Msg2();
nested(inside_cpow) async Msg3();
nested(inside_cpow) sync Msg4();
child:
async Start();
nested(inside_sync) sync StartInner();
};
}
}