gecko-dev/ipc/ipdl/test/cxx/PTestLatency.ipdl
Nika Layzell 833e7d5780 Bug 1548717 - Part 1: Remove the unnecessary internal liveness state value, r=froydnj
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
2019-05-21 17:04:27 +00:00

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