blob: 37b7973e6d74caed65f19d0df01a272f2c830c8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include "mozilla/_ipdltest/TestRacyInterruptReplies.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestRacyInterruptRepliesChild", ParentImpl="TestRacyInterruptRepliesParent"]
intr protocol PTestRacyInterruptReplies {
child:
[LegacyIntr] intr R_() returns (int replyNum);
async _A();
async ChildTest();
async __delete__();
parent:
[LegacyIntr] intr _R() returns (int replyNum);
async A_();
};
} // namespace _ipdltest
} // namespace mozilla
|