blob: 998ab298423c43e06d00262cea343ab3d212918f [file] [log] [blame]
// Copyright 2017 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 MainThreadWorklet_h
#define MainThreadWorklet_h
#include "core/workers/Worklet.h"
#include "bindings/core/v8/ScriptPromise.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
namespace blink {
class LocalFrame;
class ScriptPromiseResolver;
// A MainThreadWorklet is a worklet that runs only on the main thread.
// TODO(nhiroki): This is a temporary class to support module loading for main
// thread worklets. This and ThreadedWorklet will be merged into the base
// Worklet class once threaded worklets are ready to use module loading.
class CORE_EXPORT MainThreadWorklet : public Worklet {
USING_GARBAGE_COLLECTED_MIXIN(MainThreadWorklet);
WTF_MAKE_NONCOPYABLE(MainThreadWorklet);
public:
virtual ~MainThreadWorklet() = default;
// ContextLifecycleObserver
void ContextDestroyed(ExecutionContext*) final;
DECLARE_VIRTUAL_TRACE();
protected:
explicit MainThreadWorklet(LocalFrame*);
private:
// Worklet.
void FetchAndInvokeScript(const KURL& module_url_record,
const WorkletOptions&,
ScriptPromiseResolver*) override;
};
} // namespace blink
#endif // MainThreadWorklet_h