Bug 1782871: Correct IPDL documentation in 'Actor Lifetimes in C++' r=nika

Differential Revision: https://phabricator.services.mozilla.com/D153553
This commit is contained in:
Jim Blandy 2022-08-03 21:32:36 +00:00
parent 4728e550fa
commit 7cc4f55f2a

View file

@ -1181,8 +1181,8 @@ The relevant part of the parent class looks like this:
.. code-block:: c++
class MyManagerParent : public PMyManagerParent {
already_AddRefed<PMyManagerParent> AllocPMyManagedParent();
IPCResult RecvPMyManagedConstructor(PMyManagedConstructor* aActor);
already_AddRefed<PMyManagedParent> AllocPMyManagedParent();
IPCResult RecvPMyManagedConstructor(PMyManagedParent* aActor);
IPCResult Recv__delete__(const nsString& aNote);
void ActorDestroy(ActorDestroyReason why);