comparison: ipc/ipdl/test/cxx/PTestSyncError.ipdl
ipc/ipdl/test/cxx/PTestSyncError.ipdl
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
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 |