replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287843
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
/* 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/. */
|
|
|
|
#include "ServiceWorkerParent.h"
|
|
|
|
#include "ServiceWorkerProxy.h"
|
|
#include "mozilla/dom/ClientInfo.h"
|
|
#include "mozilla/dom/ClientState.h"
|
|
#include "mozilla/dom/ipc/StructuredCloneData.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
using mozilla::dom::ipc::StructuredCloneData;
|
|
using mozilla::ipc::IPCResult;
|
|
|
|
void ServiceWorkerParent::ActorDestroy(ActorDestroyReason aReason) {
|
|
if (mProxy) {
|
|
mProxy->RevokeActor(this);
|
|
mProxy = nullptr;
|
|
}
|
|
}
|
|
|
|
IPCResult ServiceWorkerParent::RecvTeardown() {
|
|
MaybeSendDelete();
|
|
return IPC_OK();
|
|
}
|
|
|
|
IPCResult ServiceWorkerParent::RecvPostMessage(
|
|
StructuredCloneData* aData, const PostMessageSource& aSource) {
|
|
mProxy->PostMessage(aData, aSource);
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
ServiceWorkerParent::ServiceWorkerParent() : mDeleteSent(false) {}
|
|
|
|
ServiceWorkerParent::~ServiceWorkerParent() { MOZ_DIAGNOSTIC_ASSERT(!mProxy); }
|
|
|
|
void ServiceWorkerParent::Init(const IPCServiceWorkerDescriptor& aDescriptor) {
|
|
MOZ_DIAGNOSTIC_ASSERT(!mProxy);
|
|
mProxy = new ServiceWorkerProxy(ServiceWorkerDescriptor(aDescriptor));
|
|
mProxy->Init(this);
|
|
}
|
|
|
|
void ServiceWorkerParent::MaybeSendDelete() {
|
|
if (mDeleteSent) {
|
|
return;
|
|
}
|
|
mDeleteSent = true;
|
|
(void)Send__delete__(this);
|
|
}
|
|
|
|
} // namespace mozilla::dom
|