no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / dom / serviceworkers / ServiceWorkerManagerChild.h
blob54a374b14bb7b8f40ec13698715d54666b1b330b
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 file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_ServiceWorkerManagerChild_h
8 #define mozilla_dom_ServiceWorkerManagerChild_h
10 #include "mozilla/dom/PServiceWorkerManagerChild.h"
11 #include "mozilla/ipc/BackgroundUtils.h"
13 namespace mozilla {
15 class OriginAttributes;
17 namespace ipc {
18 class BackgroundChildImpl;
19 } // namespace ipc
21 namespace dom {
23 class ServiceWorkerManagerChild final : public PServiceWorkerManagerChild {
24 friend class mozilla::ipc::BackgroundChildImpl;
26 public:
27 NS_INLINE_DECL_REFCOUNTING(ServiceWorkerManagerChild)
29 void ManagerShuttingDown() { mShuttingDown = true; }
31 private:
32 ServiceWorkerManagerChild() : mShuttingDown(false) {}
34 ~ServiceWorkerManagerChild() = default;
36 bool mShuttingDown;
39 } // namespace dom
40 } // namespace mozilla
42 #endif // mozilla_dom_ServiceWorkerManagerChild_h