mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
21 lines
408 B
Plaintext
21 lines
408 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
intr protocol PTestUrgency
|
|
{
|
|
parent:
|
|
sync Test1() returns (uint32_t result);
|
|
async Test2();
|
|
sync Test3() returns (uint32_t result);
|
|
sync FinalTest_Begin();
|
|
|
|
child:
|
|
async Start();
|
|
rpc Reply1() returns (uint32_t result);
|
|
rpc Reply2() returns (uint32_t result);
|
|
rpc FinalTest_Hang();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|