blob: b9b2a2897c962de4889679995826fb7468e6c886 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NavigatorServiceWorker_h
#define NavigatorServiceWorker_h
#include "core/frame/Navigator.h"
#include "modules/ModulesExport.h"
#include "platform/Supplementable.h"
#include "platform/heap/Handle.h"
namespace blink {
class Document;
class ExceptionState;
class Navigator;
class ServiceWorkerContainer;
class MODULES_EXPORT NavigatorServiceWorker final : public GarbageCollectedFinalized<NavigatorServiceWorker>, public Supplement<Navigator>, public DOMWindowProperty {
USING_GARBAGE_COLLECTED_MIXIN(NavigatorServiceWorker);
public:
static NavigatorServiceWorker* from(Document&);
static NavigatorServiceWorker& from(Navigator&);
static NavigatorServiceWorker* toNavigatorServiceWorker(Navigator&);
virtual ~NavigatorServiceWorker();
static ServiceWorkerContainer* serviceWorker(ExecutionContext*, Navigator&, ExceptionState&);
DECLARE_VIRTUAL_TRACE();
private:
explicit NavigatorServiceWorker(Navigator&);
ServiceWorkerContainer* serviceWorker(ExceptionState&);
static const char* supplementName();
// DOMWindowProperty override.
void willDetachGlobalObjectFromFrame() override;
Member<ServiceWorkerContainer> m_serviceWorker;
};
} // namespace blink
#endif // NavigatorServiceWorker_h