blob: a4b6d428e80440ba61d8efd5a72e5e64a71210f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include "mozilla/_ipdltest/TestSyncError.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestSyncErrorChild", ParentImpl="TestSyncErrorParent"]
sync protocol PTestSyncError {
child:
async Start();
parent:
sync Error();
async __delete__();
};
} // namespace mozilla
} // namespace _ipdltest
|