2013-07-03 03:37:33 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace _ipdltest {
|
|
|
|
|
2014-10-08 04:32:45 +00:00
|
|
|
prio(normal upto high) sync protocol PTestUrgency
|
2013-07-03 03:37:33 +00:00
|
|
|
{
|
|
|
|
parent:
|
|
|
|
sync Test1() returns (uint32_t result);
|
|
|
|
async Test2();
|
|
|
|
sync Test3() returns (uint32_t result);
|
2013-08-27 04:56:57 +00:00
|
|
|
sync FinalTest_Begin();
|
2013-07-03 03:37:33 +00:00
|
|
|
|
|
|
|
child:
|
|
|
|
async Start();
|
2014-10-08 04:32:45 +00:00
|
|
|
prio(high) sync Reply1() returns (uint32_t result);
|
|
|
|
prio(high) sync Reply2() returns (uint32_t result);
|
2013-07-03 03:37:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace _ipdltest
|
|
|
|
} // namespace mozilla
|