1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5include protocol PBackground;
6
7include ProtocolTypes;
8include RemoteWorkerTypes;
9
10namespace mozilla {
11namespace dom {
12
13// Simple protocol to register any active RemoteWorkerService running on any
14// process.
15protocol PRemoteWorkerService
16{
17  manager PBackground;
18
19parent:
20  async __delete__();
21};
22
23} // namespace dom
24} // namespace mozilla
25