blob: 9a9e0db748400ac649b427f7f619237bafa14195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace mozilla {
namespace _ipdltest {
sync protocol PTestSyncError {
child:
async Start();
parent:
sync Error();
async __delete__();
};
} // namespace mozilla
} // namespace _ipdltest
|