Bug 1857841 - pt 3. Add a new page kind named "fresh" r=glandium
[gecko.git] / dom / clients / manager / ClientManagerOpChild.h
blob1d13efd5be5c2623bef496f0a463348ab1f3f4b4
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef _mozilla_dom_ClientManagerOpChild_h
7 #define _mozilla_dom_ClientManagerOpChild_h
9 #include "mozilla/dom/ClientOpPromise.h"
10 #include "mozilla/dom/PClientManagerOpChild.h"
11 #include "mozilla/MozPromise.h"
13 namespace mozilla::dom {
15 class ClientManager;
17 class ClientManagerOpChild final : public PClientManagerOpChild {
18 RefPtr<ClientManager> mClientManager;
19 RefPtr<ClientOpPromise::Private> mPromise;
21 // PClientManagerOpChild interface
22 void ActorDestroy(ActorDestroyReason aReason) override;
24 mozilla::ipc::IPCResult Recv__delete__(
25 const ClientOpResult& aResult) override;
27 public:
28 ClientManagerOpChild(ClientManager* aClientManager,
29 const ClientOpConstructorArgs& aArgs,
30 ClientOpPromise::Private* aPromise);
32 ~ClientManagerOpChild();
35 } // namespace mozilla::dom
37 #endif // _mozilla_dom_ClientManagerOpChild_h