summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestDescSub.ipdl
blob: a05451c639b3a72ae57e3a2a5363243dbfd489ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include protocol PTestDesc;
include protocol PTestDescSubsub;

include "mozilla/_ipdltest/TestDesc.h";

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, ChildImpl="TestDescSubChild", ParentImpl="TestDescSubParent"]
intr protocol PTestDescSub {
    manager PTestDesc;
    manages PTestDescSubsub;

child:
    async __delete__();

    [LegacyIntr] intr PTestDescSubsub();
};

}
}