Bug 1883861 - Part 2: Remove unnecessary SSE2 check for x86 memory barrier. r=jandem
[gecko.git] / dom / serviceworkers / ServiceWorkerContainerParent.h
blob787a026c186916f4eb3379b24b57a48237283330
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_serviceworkercontainerparent_h__
8 #define mozilla_dom_serviceworkercontainerparent_h__
10 #include "mozilla/dom/PServiceWorkerContainerParent.h"
12 namespace mozilla::dom {
14 class IPCServiceWorkerDescriptor;
15 class ServiceWorkerContainerProxy;
17 class ServiceWorkerContainerParent final
18 : public PServiceWorkerContainerParent {
19 RefPtr<ServiceWorkerContainerProxy> mProxy;
21 ~ServiceWorkerContainerParent();
23 // PServiceWorkerContainerParent
24 void ActorDestroy(ActorDestroyReason aReason) override;
26 mozilla::ipc::IPCResult RecvTeardown() override;
28 mozilla::ipc::IPCResult RecvRegister(
29 const IPCClientInfo& aClientInfo, const nsACString& aScopeURL,
30 const nsACString& aScriptURL,
31 const ServiceWorkerUpdateViaCache& aUpdateViaCache,
32 RegisterResolver&& aResolver) override;
34 mozilla::ipc::IPCResult RecvGetRegistration(
35 const IPCClientInfo& aClientInfo, const nsACString& aURL,
36 GetRegistrationResolver&& aResolver) override;
38 mozilla::ipc::IPCResult RecvGetRegistrations(
39 const IPCClientInfo& aClientInfo,
40 GetRegistrationsResolver&& aResolver) override;
42 mozilla::ipc::IPCResult RecvGetReady(const IPCClientInfo& aClientInfo,
43 GetReadyResolver&& aResolver) override;
45 public:
46 NS_INLINE_DECL_REFCOUNTING(ServiceWorkerContainerParent, override);
48 ServiceWorkerContainerParent();
50 void Init();
53 } // namespace mozilla::dom
55 #endif // mozilla_dom_serviceworkercontainerparent_h__