blob: d6ddb34bf8db5b12a5181f23f1515df6cb4ea013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include protocol PMyManager;
namespace mozilla {
namespace myns {
protocol PMyManaged {
manager PMyManager;
child:
async __delete__(Shmem aShmem);
};
} // namespace myns
} // namespace mozilla
|