mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
* feat: support registering MV3 extension service workers * feat: load chrome extension APIs in worker context * feat: add more ContentRendererClient service worker overrides * fix: lint error * refactor: emit object for 'registration-completed' * docs: clarify when registration-completed emits
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
// Copyright (c) 2019 Slack Technologies, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_BROWSER_API_ELECTRON_API_SERVICE_WORKER_CONTEXT_H_
|
|
#define SHELL_BROWSER_API_ELECTRON_API_SERVICE_WORKER_CONTEXT_H_
|
|
|
|
#include "content/public/browser/service_worker_context.h"
|
|
#include "content/public/browser/service_worker_context_observer.h"
|
|
#include "gin/handle.h"
|
|
#include "gin/wrappable.h"
|
|
#include "shell/browser/event_emitter_mixin.h"
|
|
|
|
namespace electron {
|
|
|
|
class ElectronBrowserContext;
|
|
|
|
namespace api {
|
|
|
|
class ServiceWorkerContext
|
|
: public gin::Wrappable<ServiceWorkerContext>,
|
|
public gin_helper::EventEmitterMixin<ServiceWorkerContext>,
|
|
public content::ServiceWorkerContextObserver {
|
|
public:
|
|
static gin::Handle<ServiceWorkerContext> Create(
|
|
v8::Isolate* isolate,
|
|
ElectronBrowserContext* browser_context);
|
|
|
|
v8::Local<v8::Value> GetAllRunningWorkerInfo(v8::Isolate* isolate);
|
|
v8::Local<v8::Value> GetWorkerInfoFromID(gin_helper::ErrorThrower thrower,
|
|
int64_t version_id);
|
|
|
|
// content::ServiceWorkerContextObserver
|
|
void OnReportConsoleMessage(int64_t version_id,
|
|
const GURL& scope,
|
|
const content::ConsoleMessage& message) override;
|
|
void OnRegistrationCompleted(const GURL& scope) override;
|
|
void OnDestruct(content::ServiceWorkerContext* context) override;
|
|
|
|
// gin::Wrappable
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
v8::Isolate* isolate) override;
|
|
const char* GetTypeName() override;
|
|
|
|
protected:
|
|
explicit ServiceWorkerContext(v8::Isolate* isolate,
|
|
ElectronBrowserContext* browser_context);
|
|
~ServiceWorkerContext() override;
|
|
|
|
private:
|
|
ElectronBrowserContext* browser_context_;
|
|
|
|
content::ServiceWorkerContext* service_worker_context_;
|
|
|
|
base::WeakPtrFactory<ServiceWorkerContext> weak_ptr_factory_{this};
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContext);
|
|
};
|
|
|
|
} // namespace api
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_BROWSER_API_ELECTRON_API_SERVICE_WORKER_CONTEXT_H_
|