mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 01:10:22 +00:00
833e7d5780
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
27 lines
457 B
Plaintext
27 lines
457 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
intr protocol PTestLatency {
|
|
|
|
child:
|
|
async __delete__();
|
|
async Ping();
|
|
async Ping5();
|
|
intr Rpc();
|
|
async Spam();
|
|
intr Synchro();
|
|
async CompressedSpam(uint32_t seqno) compress;
|
|
intr Synchro2() returns (uint32_t lastSeqno,
|
|
uint32_t numMessagesDispatched);
|
|
|
|
parent:
|
|
async Pong();
|
|
async Pong5();
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|