Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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