ipc/ipdl/test/cxx/PTestBridgeMainSub.ipdl

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 include protocol PTestBridgeMain;
     2 include protocol PTestBridgeSub;
     4 namespace mozilla {
     5 namespace _ipdltest {
     7 // (Bridge protocols can have different semantics than the endpoints
     8 // they bridge)
     9 intr protocol PTestBridgeMainSub {
    10     bridges PTestBridgeMain, PTestBridgeSub;
    12 child:
    13     Hi();
    14     intr HiRpc();
    16 parent:
    17     Hello();
    18     sync HelloSync();
    19     intr HelloRpc();
    20     __delete__();
    22 state START:       recv Hello goto HI;
    23 state HI:          send Hi goto HELLO_SYNC;
    24 state HELLO_SYNC:  recv HelloSync goto HELLO_RPC;
    25 state HELLO_RPC:   answer HelloRpc goto HI_RPC;
    26 state HI_RPC:      call HiRpc goto DEAD;
    27 state DEAD:
    28     recv __delete__;
    29 };
    32 } // namespace mozilla
    33 } // namespace _ipdltest

mercurial