summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestShutdownSub.ipdl
blob: e91caca740b3e23c866815d4f7ddc8844e0c57be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
include protocol PTestShutdown;
include protocol PTestShutdownSubsub;

include "mozilla/_ipdltest/TestShutdown.h";

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, ChildImpl="TestShutdownSubChild", ParentImpl="TestShutdownSubParent"]
intr protocol PTestShutdownSub {
    manager PTestShutdown;
    manages PTestShutdownSubsub;

both:
    [LegacyIntr] intr StackFrame();

parent:
    async PTestShutdownSubsub(bool expectParentDeleted);
    sync __delete__();
};

} // namespace _ipdltest
} // namespace mozilla