Bug 1776444 [wpt PR 34582] - Revert "Add TimedHTMLParserBudget to fieldtrial_testing_...
[gecko.git] / dom / broadcastchannel / BroadcastChannelChild.h
blob5c5cae4fd7d52e4c20c775dbacefea694600749b
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 file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_BroadcastChannelChild_h
8 #define mozilla_dom_BroadcastChannelChild_h
10 #include "mozilla/dom/PBroadcastChannelChild.h"
12 namespace mozilla {
14 namespace ipc {
15 class BackgroundChildImpl;
16 } // namespace ipc
18 namespace dom {
20 class BroadcastChannel;
22 class BroadcastChannelChild final : public PBroadcastChannelChild {
23 friend class mozilla::ipc::BackgroundChildImpl;
25 public:
26 NS_INLINE_DECL_REFCOUNTING(BroadcastChannelChild)
28 void SetParent(BroadcastChannel* aBC) { mBC = aBC; }
30 virtual mozilla::ipc::IPCResult RecvNotify(const MessageData& aData) override;
32 virtual mozilla::ipc::IPCResult RecvRefMessageDelivered(
33 const nsID& aMessageID, const uint32_t& aOtherBCs) override;
35 bool IsActorDestroyed() const { return mActorDestroyed; }
37 private:
38 BroadcastChannelChild();
39 ~BroadcastChannelChild();
41 virtual void ActorDestroy(ActorDestroyReason aWhy) override;
43 // This raw pointer is actually the parent object.
44 // It's set to null when the parent object is deleted.
45 BroadcastChannel* mBC;
47 bool mActorDestroyed;
50 } // namespace dom
51 } // namespace mozilla
53 #endif // mozilla_dom_BroadcastChannelChild_h