ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,23 @@
     1.4 +include protocol PTestSelfManage;
     1.5 +
     1.6 +namespace mozilla {
     1.7 +namespace _ipdltest {
     1.8 +
     1.9 +
    1.10 +protocol PTestSelfManageRoot {
    1.11 +    manages PTestSelfManage;
    1.12 +
    1.13 +child:
    1.14 +    PTestSelfManage();
    1.15 +    __delete__();
    1.16 +
    1.17 +state LIVE:
    1.18 +    send PTestSelfManage goto DEAD;
    1.19 +
    1.20 +state DEAD:
    1.21 +    send __delete__;
    1.22 +};
    1.23 +
    1.24 +
    1.25 +} // namespace mozilla
    1.26 +} // namespace _ipdltest

mercurial