namespace mozilla {
namespace _ipdltest {

sync protocol PTestPriority {
parent:
    prio(input) async PMsg1();
    prio(input) sync PMsg2();
    prio(high) async PMsg3();
    prio(high) sync PMsg4();

child:
    prio(input) async CMsg1();
    prio(high) async CMsg2();
};

} // namespace _ipdltest
} // namespace mozilla
