Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / broadcastchannel / BroadcastChannelChild.cpp
blob30e2633c5dcc3e76b739aa82008d59ee38edc2e0
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/. */
7 #include "BroadcastChannelChild.h"
8 #include "BroadcastChannel.h"
10 namespace mozilla {
12 using namespace ipc;
14 namespace dom {
16 BroadcastChannelChild::BroadcastChannelChild()
17 : mBC(nullptr), mActorDestroyed(false) {}
19 BroadcastChannelChild::~BroadcastChannelChild() { MOZ_ASSERT(!mBC); }
21 mozilla::ipc::IPCResult BroadcastChannelChild::RecvNotify(
22 const MessageData& aData) {
23 if (!mBC) {
24 // The object is going to be deleted soon. No notify is required.
25 return IPC_OK();
28 mBC->MessageReceived(aData);
29 return IPC_OK();
32 mozilla::ipc::IPCResult BroadcastChannelChild::RecvRefMessageDelivered(
33 const nsID& aMessageID, const uint32_t& aOtherBCs) {
34 if (!mBC) {
35 // The object is going to be deleted soon. No notify is required.
36 return IPC_OK();
39 mBC->MessageDelivered(aMessageID, aOtherBCs);
40 return IPC_OK();
43 void BroadcastChannelChild::ActorDestroy(ActorDestroyReason aWhy) {
44 mActorDestroyed = true;
47 } // namespace dom
48 } // namespace mozilla