summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestAsyncReturns.ipdl
blob: 42ef17d1e84cc72351e93dd548873b3baa94f569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include "mozilla/_ipdltest/TestAsyncReturns.h";

namespace mozilla {
namespace _ipdltest {


[ManualDealloc, ChildImpl="TestAsyncReturnsChild", ParentImpl="TestAsyncReturnsParent"]
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