blob: 723e973b329eb55f36ab9212390f92b4e72bca37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
namespace mozilla {
namespace _ipdltest {
protocol PTestAsyncReturns {
child:
async Ping() returns (bool one);
async NoReturn() returns (bool unused);
parent:
async Pong() returns (uint32_t param1, uint32_t param2);
};
} // namespace mozilla
} // namespace _ipdltest
|