comparison: ipc/ipdl/test/cxx/PTestBridgeSub.ipdl
ipc/ipdl/test/cxx/PTestBridgeSub.ipdl
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 include protocol PTestBridgeMainSub; |
|
2 |
|
3 namespace mozilla { |
|
4 namespace _ipdltest { |
|
5 |
|
6 |
|
7 protocol PTestBridgeSub { |
|
8 child: |
|
9 Ping(); |
|
10 |
|
11 parent: |
|
12 BridgeEm(); |
|
13 __delete__(); |
|
14 |
|
15 state START: |
|
16 send Ping goto BRIDGEEM; |
|
17 state BRIDGEEM: |
|
18 recv BridgeEm goto DEAD; |
|
19 state DEAD: |
|
20 recv __delete__; |
|
21 }; |
|
22 |
|
23 |
|
24 } // namespace mozilla |
|
25 } // namespace _ipdltest |