summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestBridgeMain.ipdl
blob: 229820b1728e526822bb7fc80aa7544527c2bcdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
include protocol PTestBridgeMainSub;
include protocol PTestBridgeSub;

namespace mozilla {
namespace _ipdltest {


protocol PTestBridgeMain {
    child spawns PTestBridgeSub;
    child opens PTestBridgeMainSub;

child:
    async Start();

parent:
    async __delete__();

state START:
    send Start goto DEAD;
state DEAD:
    recv __delete__;
};


} // namespace mozilla
} // namespace _ipdltest