1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestManyChildAllocs.ipdl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +include protocol PTestManyChildAllocsSub; 1.5 + 1.6 +namespace mozilla { 1.7 +namespace _ipdltest { 1.8 + 1.9 +protocol PTestManyChildAllocs { 1.10 + manages PTestManyChildAllocsSub; 1.11 + 1.12 +child: 1.13 + Go(); // start allocating 1.14 + 1.15 +parent: 1.16 + Done(); 1.17 + 1.18 + PTestManyChildAllocsSub(); 1.19 +}; 1.20 + 1.21 +} // namespace _ipdltest 1.22 +} // namespace mozilla