ipc/ipdl/test/cxx/PTestSyncError.ipdl

branch
TOR_BUG_3246
changeset 6
8bccb770b82d
equal deleted inserted replaced
-1:000000000000 0:534a6fbb9e34
1
2 namespace mozilla {
3 namespace _ipdltest {
4
5
6 sync protocol PTestSyncError {
7
8 child:
9 Start();
10
11 parent:
12 sync Error();
13 __delete__();
14
15
16 state START:
17 send Start goto SYNC_ERROR;
18
19 state SYNC_ERROR:
20 recv Error goto DEAD;
21
22 state DEAD:
23 recv __delete__;
24 };
25
26
27 } // namespace mozilla
28 } // namespace _ipdltest

mercurial