summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestFailedCtor.ipdl
blob: 0144f66dba8643e7489a7125ea24cfb5dc9be17e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include protocol PTestFailedCtorSub;

include "mozilla/_ipdltest/TestFailedCtor.h";

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, ChildImpl="TestFailedCtorChild", ParentImpl="TestFailedCtorParent"]
intr protocol PTestFailedCtor {
    manages PTestFailedCtorSub; 
child:
    [LegacyIntr] intr PTestFailedCtorSub();
    async __delete__();
};

}
}