Files
tubestation/dom/clients/manager/ClientManagerActors.h
Nika Layzell 0c9bc0c96f Bug 1874739 - Part 2: Make PClientManager refcounted, r=dom-worker-reviewers,janv,asuth
This is part of removing [ManualDealloc] from all protocols which manage other
protocols.

Differential Revision: https://phabricator.services.mozilla.com/D198612
2024-01-19 20:23:18 +00:00

24 lines
737 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef _mozilla_dom_ClientManagerActors_h
#define _mozilla_dom_ClientManagerActors_h
#include "mozilla/AlreadyAddRefed.h"
namespace mozilla {
namespace dom {
class PClientManagerParent;
already_AddRefed<PClientManagerParent> AllocClientManagerParent();
void InitClientManagerParent(PClientManagerParent* aActor);
} // namespace dom
} // namespace mozilla
#endif // _mozilla_dom_ClientManagerActors_h