ClientManagerOpChild.h (1215B)
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 8 9 #include "mozilla/MozPromise.h" 10 #include "mozilla/dom/ClientOpPromise.h" 11 #include "mozilla/dom/PClientManagerOpChild.h" 12 13 namespace mozilla::dom { 14 15 class ClientManager; 16 17 class ClientManagerOpChild final : public PClientManagerOpChild { 18 RefPtr<ClientManager> mClientManager; 19 RefPtr<ClientOpPromise::Private> mPromise; 20 21 // PClientManagerOpChild interface 22 void ActorDestroy(ActorDestroyReason aReason) override; 23 24 mozilla::ipc::IPCResult Recv__delete__( 25 const ClientOpResult& aResult) override; 26 27 public: 28 ClientManagerOpChild(ClientManager* aClientManager, 29 const ClientOpConstructorArgs& aArgs, 30 ClientOpPromise::Private* aPromise); 31 32 ~ClientManagerOpChild(); 33 }; 34 35 } // namespace mozilla::dom 36 37 #endif // _mozilla_dom_ClientManagerOpChild_h