Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 include protocol PTestBadActorSub;
3 namespace mozilla {
4 namespace _ipdltest {
6 // Test that a parent sending a reentrant __delete__ message
7 // is not killed if a child's message races with the reply.
9 intr protocol PTestBadActor {
10 manages PTestBadActorSub;
12 child:
13 PTestBadActorSub();
14 __delete__();
15 };
17 } // namespace _ipdltest
18 } // namespace mozilla