tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ServiceWorkerChild.h (1170B)


      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/. */
      6 
      7 #ifndef mozilla_dom_serviceworkerchild_h__
      8 #define mozilla_dom_serviceworkerchild_h__
      9 
     10 #include "mozilla/dom/PServiceWorkerChild.h"
     11 #include "mozilla/dom/WorkerRef.h"
     12 
     13 namespace mozilla::dom {
     14 
     15 class IPCWorkerRef;
     16 class ServiceWorker;
     17 
     18 class ServiceWorkerChild final : public PServiceWorkerChild {
     19  RefPtr<IPCWorkerRef> mIPCWorkerRef;
     20  ServiceWorker* mOwner;
     21  bool mTeardownStarted;
     22 
     23  ServiceWorkerChild();
     24 
     25  ~ServiceWorkerChild() = default;
     26 
     27  // PServiceWorkerChild
     28  void ActorDestroy(ActorDestroyReason aReason) override;
     29 
     30 public:
     31  NS_INLINE_DECL_REFCOUNTING(ServiceWorkerChild, override);
     32 
     33  static RefPtr<ServiceWorkerChild> Create();
     34 
     35  void SetOwner(ServiceWorker* aOwner);
     36 
     37  void RevokeOwner(ServiceWorker* aOwner);
     38 
     39  void MaybeStartTeardown();
     40 };
     41 
     42 }  // namespace mozilla::dom
     43 
     44 #endif  // mozilla_dom_serviceworkerchild_h__