2015-06-04 21:51:57 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_ServiceWorkerManagerChild_h
|
|
|
|
#define mozilla_dom_ServiceWorkerManagerChild_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/PServiceWorkerManagerChild.h"
|
|
|
|
#include "mozilla/ipc/BackgroundUtils.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2017-01-12 19:38:48 +03:00
|
|
|
class OriginAttributes;
|
2015-06-04 21:51:57 +03:00
|
|
|
|
|
|
|
namespace ipc {
|
|
|
|
class BackgroundChildImpl;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace ipc
|
2015-06-04 21:51:57 +03:00
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class ServiceWorkerManagerChild final : public PServiceWorkerManagerChild {
|
|
|
|
friend class mozilla::ipc::BackgroundChildImpl;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_REFCOUNTING(ServiceWorkerManagerChild)
|
|
|
|
|
|
|
|
void ManagerShuttingDown() { mShuttingDown = true; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ServiceWorkerManagerChild() : mShuttingDown(false) {}
|
|
|
|
|
2020-02-12 13:52:29 +03:00
|
|
|
~ServiceWorkerManagerChild() = default;
|
2015-06-04 21:51:57 +03:00
|
|
|
|
|
|
|
bool mShuttingDown;
|
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2015-06-04 21:51:57 +03:00
|
|
|
|
|
|
|
#endif // mozilla_dom_ServiceWorkerManagerChild_h
|