Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 namespace mozilla {
2 namespace _ipdltest {
4 intr protocol PTestUrgency
5 {
6 parent:
7 sync Test1() returns (uint32_t result);
8 async Test2();
9 sync Test3() returns (uint32_t result);
10 sync FinalTest_Begin();
12 child:
13 async Start();
14 rpc Reply1() returns (uint32_t result);
15 rpc Reply2() returns (uint32_t result);
16 rpc FinalTest_Hang();
17 };
19 } // namespace _ipdltest
20 } // namespace mozilla