1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestBridgeSub.ipdl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +include protocol PTestBridgeMainSub; 1.5 + 1.6 +namespace mozilla { 1.7 +namespace _ipdltest { 1.8 + 1.9 + 1.10 +protocol PTestBridgeSub { 1.11 +child: 1.12 + Ping(); 1.13 + 1.14 +parent: 1.15 + BridgeEm(); 1.16 + __delete__(); 1.17 + 1.18 +state START: 1.19 + send Ping goto BRIDGEEM; 1.20 +state BRIDGEEM: 1.21 + recv BridgeEm goto DEAD; 1.22 +state DEAD: 1.23 + recv __delete__; 1.24 +}; 1.25 + 1.26 + 1.27 +} // namespace mozilla 1.28 +} // namespace _ipdltest