blob: 25fa5d0f925bffa6847b01ea46ccd8bacdecd3c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace mozilla {
namespace _ipdltest {
nested(upto inside_cpow) sync protocol PTestDemon
{
child:
async Start();
both:
async AsyncMessage(int n);
nested(inside_sync) sync HiPrioSyncMessage();
parent:
sync SyncMessage(int n);
nested(inside_cpow) async UrgentAsyncMessage(int n);
nested(inside_cpow) sync UrgentSyncMessage(int n);
};
} // namespace _ipdltest
} // namespace mozilla
|