ipc/ipdl/test/cxx/PTestDesc.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 PTestDescSub;
     2 include protocol PTestDescSubsub;
     4 namespace mozilla {
     5 namespace _ipdltest {
     7 intr protocol PTestDesc {
     8     manages PTestDescSub; 
     9 child:
    10     intr PTestDescSub(nullable PTestDescSubsub dummy);
    12     Test(PTestDescSubsub a);
    14     __delete__();
    16 parent:
    17     Ok(PTestDescSubsub a);
    20 state CONSTRUCT:
    21     call PTestDescSub goto TEST;
    22 state TEST:
    23     send Test goto ACK;
    24 state ACK:
    25     recv Ok goto DEAD;
    26 state DEAD:
    27     send __delete__;
    28 };
    30 }
    31 }

mercurial