mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 07:40:42 +00:00

These values were only being used for assertions within IPDL send methods. They had no positive impact beyond causing crashes when sending a message over a dead actor. Differential Revision: https://phabricator.services.mozilla.com/D30235 --HG-- extra : moz-landing-system : lando
20 lines
224 B
Plaintext
20 lines
224 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
intr protocol PTestNestedLoops {
|
|
|
|
child:
|
|
async Start();
|
|
intr R();
|
|
async __delete__();
|
|
|
|
parent:
|
|
async Nonce();
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|