blob: 33eeabffdf5e99e8d7e8e690c1b08ed8ff388da4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace mozilla {
namespace _ipdltest {
[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
protocol PTestShmem {
child:
async Give(Shmem mem, Shmem unsafe, uint32_t expectedSize);
parent:
async Take(Shmem mem, Shmem unsafe, uint32_t expectedSize);
async __delete__();
};
}
}
|