Bug 1806483 - Enable TSAN cppunittests by default. r=jmaher
[gecko.git] / dom / serviceworkers / ServiceWorkerActors.h
blobcad7cf38e75349a17c5af894dae3b117b4ac9638
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 #ifndef mozilla_dom_serviceworkeractors_h__
8 #define mozilla_dom_serviceworkeractors_h__
10 namespace mozilla::dom {
12 // PServiceWorker
14 class IPCServiceWorkerDescriptor;
15 class PServiceWorkerParent;
17 void InitServiceWorkerParent(PServiceWorkerParent* aActor,
18 const IPCServiceWorkerDescriptor& aDescriptor);
20 // PServiceWorkerContainer
22 class PServiceWorkerContainerParent;
24 void InitServiceWorkerContainerParent(PServiceWorkerContainerParent* aActor);
26 // PServiceWorkerRegistration
28 class IPCServiceWorkerRegistrationDescriptor;
29 class PServiceWorkerRegistrationParent;
31 void InitServiceWorkerRegistrationParent(
32 PServiceWorkerRegistrationParent* aActor,
33 const IPCServiceWorkerRegistrationDescriptor& aDescriptor);
35 } // namespace mozilla::dom
37 #endif // mozilla_dom_serviceworkeractors_h__