mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-08-09 11:25:22 +00:00
18 lines
234 B
Plaintext
18 lines
234 B
Plaintext
include protocol PTestBadActor;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
intr protocol PTestBadActorSub {
|
|
manager PTestBadActor;
|
|
|
|
child:
|
|
intr __delete__();
|
|
|
|
parent:
|
|
Ping();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|