ServiceWorkerManagerChild.h (1126B)
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/. */ 6 7 #ifndef mozilla_dom_ServiceWorkerManagerChild_h 8 #define mozilla_dom_ServiceWorkerManagerChild_h 9 10 #include "mozilla/dom/PServiceWorkerManagerChild.h" 11 #include "mozilla/ipc/BackgroundUtils.h" 12 13 namespace mozilla { 14 15 class OriginAttributes; 16 17 namespace ipc { 18 class BackgroundChildImpl; 19 } // namespace ipc 20 21 namespace dom { 22 23 class ServiceWorkerManagerChild final : public PServiceWorkerManagerChild { 24 friend class mozilla::ipc::BackgroundChildImpl; 25 26 public: 27 NS_INLINE_DECL_REFCOUNTING(ServiceWorkerManagerChild) 28 29 void ManagerShuttingDown() { mShuttingDown = true; } 30 31 private: 32 ServiceWorkerManagerChild() : mShuttingDown(false) {} 33 34 ~ServiceWorkerManagerChild() = default; 35 36 bool mShuttingDown; 37 }; 38 39 } // namespace dom 40 } // namespace mozilla 41 42 #endif // mozilla_dom_ServiceWorkerManagerChild_h