-1:000000000000 | 0:d931263810b9 |
---|---|
1 include protocol PTestManyChildAllocsSub; | |
2 | |
3 namespace mozilla { | |
4 namespace _ipdltest { | |
5 | |
6 protocol PTestManyChildAllocs { | |
7 manages PTestManyChildAllocsSub; | |
8 | |
9 child: | |
10 Go(); // start allocating | |
11 | |
12 parent: | |
13 Done(); | |
14 | |
15 PTestManyChildAllocsSub(); | |
16 }; | |
17 | |
18 } // namespace _ipdltest | |
19 } // namespace mozilla |