2017-10-30 20:35:07 +03:00
|
|
|
/* 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 PBackgroundSharedTypes;
|
|
|
|
|
|
|
|
using ServiceWorkerState from "mozilla/dom/ServiceWorkerIPCUtils.h";
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
// IPC type with enough information to create a ServiceWorker DOM object
|
|
|
|
// in a child process. Note that the state may be slightly out-of-sync
|
|
|
|
// with the parent and should be updated dynamically if necessary.
|
|
|
|
struct IPCServiceWorkerDescriptor
|
|
|
|
{
|
|
|
|
uint64_t id;
|
2018-07-02 17:44:18 +03:00
|
|
|
uint64_t registrationId;
|
2018-07-02 17:44:19 +03:00
|
|
|
uint64_t registrationVersion;
|
2017-10-30 20:35:07 +03:00
|
|
|
PrincipalInfo principalInfo;
|
|
|
|
nsCString scope;
|
2018-01-31 19:29:49 +03:00
|
|
|
nsCString scriptURL;
|
2017-10-30 20:35:07 +03:00
|
|
|
ServiceWorkerState state;
|
|
|
|
};
|
|
|
|
|
2018-01-23 18:38:52 +03:00
|
|
|
union OptionalIPCServiceWorkerDescriptor
|
|
|
|
{
|
|
|
|
IPCServiceWorkerDescriptor;
|
|
|
|
void_t;
|
|
|
|
};
|
|
|
|
|
2017-10-30 20:35:07 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|