blob: e576f8634f133dae5781be1e3d2992336e70052f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
namespace mozilla {
namespace _ipdltest {
intr protocol PTestStackHooks {
child:
async Start();
// These tests are more fruitful running child->parent, because
// children can send |sync| messages
parent:
async Async();
sync Sync();
intr Rpc();
both:
intr StackFrame();
parent:
async __delete__();
};
} // namespace mozilla
} // namespace _ipdltest
|