2018-07-10 02:02:39 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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"
|
|
|
|
|
2018-07-10 02:02:40 +03:00
|
|
|
#include "ServiceWorkerProxy.h"
|
|
|
|
|
2018-07-10 02:02:39 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
using mozilla::ipc::IPCResult;
|
|
|
|
|
|
|
|
void
|
|
|
|
ServiceWorkerParent::ActorDestroy(ActorDestroyReason aReason)
|
|
|
|
{
|
2018-07-10 02:02:40 +03:00
|
|
|
if (mProxy) {
|
|
|
|
mProxy->RevokeActor(this);
|
|
|
|
mProxy = nullptr;
|
|
|
|
}
|
2018-07-10 02:02:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
IPCResult
|
|
|
|
ServiceWorkerParent::RecvTeardown()
|
|
|
|
{
|
2018-07-10 02:02:40 +03:00
|
|
|
MaybeSendDelete();
|
2018-07-10 02:02:39 +03:00
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
2018-07-10 02:02:40 +03:00
|
|
|
ServiceWorkerParent::ServiceWorkerParent()
|
|
|
|
: mDeleteSent(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ServiceWorkerParent::~ServiceWorkerParent()
|
|
|
|
{
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!mProxy);
|
|
|
|
}
|
|
|
|
|
2018-07-10 02:02:39 +03:00
|
|
|
void
|
|
|
|
ServiceWorkerParent::Init(const IPCServiceWorkerDescriptor& aDescriptor)
|
|
|
|
{
|
2018-07-10 02:02:40 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!mProxy);
|
|
|
|
mProxy = new ServiceWorkerProxy(ServiceWorkerDescriptor(aDescriptor));
|
|
|
|
mProxy->Init(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ServiceWorkerParent::MaybeSendDelete()
|
|
|
|
{
|
|
|
|
if (mDeleteSent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mDeleteSent = true;
|
|
|
|
Unused << Send__delete__(this);
|
2018-07-10 02:02:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|