2021-02-03 06:41:07 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2021-2022, Andreas Kling <andreas@ladybird.org>
|
2023-03-29 19:46:18 -03:00
|
|
|
* Copyright (c) 2021-2023, Luke Wilde <lukew@serenityos.org>
|
2021-02-03 06:41:07 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-02-03 06:41:07 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibJS/Forward.h>
|
2022-02-06 00:32:26 -03:00
|
|
|
#include <LibJS/Runtime/JobCallback.h>
|
2021-09-19 17:10:49 -03:00
|
|
|
#include <LibJS/Runtime/VM.h>
|
2025-05-18 19:22:11 -03:00
|
|
|
#include <LibWeb/Bindings/AgentType.h>
|
2023-03-29 19:46:18 -03:00
|
|
|
#include <LibWeb/DOM/Element.h>
|
2022-07-11 12:37:51 -03:00
|
|
|
#include <LibWeb/DOM/MutationObserver.h>
|
2025-07-19 23:35:33 -03:00
|
|
|
#include <LibWeb/Export.h>
|
2021-09-08 18:09:18 -03:00
|
|
|
#include <LibWeb/HTML/EventLoop/EventLoop.h>
|
2025-01-04 07:12:55 -03:00
|
|
|
#include <LibWeb/HTML/Scripting/Agent.h>
|
2021-02-03 06:41:07 -03:00
|
|
|
|
|
|
|
|
namespace Web::Bindings {
|
|
|
|
|
|
2022-02-06 00:32:26 -03:00
|
|
|
struct WebEngineCustomJobCallbackData final : public JS::JobCallback::CustomData {
|
2024-10-25 00:27:26 -03:00
|
|
|
WebEngineCustomJobCallbackData(JS::Realm& incumbent_realm, OwnPtr<JS::ExecutionContext> active_script_context)
|
|
|
|
|
: incumbent_realm(incumbent_realm)
|
2022-02-06 00:32:26 -03:00
|
|
|
, active_script_context(move(active_script_context))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 16:21:51 -03:00
|
|
|
virtual ~WebEngineCustomJobCallbackData() override = default;
|
2022-02-06 00:32:26 -03:00
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
GC::Ref<JS::Realm> incumbent_realm;
|
2022-02-06 00:32:26 -03:00
|
|
|
OwnPtr<JS::ExecutionContext> active_script_context;
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-24 15:39:35 -03:00
|
|
|
HTML::Script* active_script();
|
2023-03-17 11:56:59 -03:00
|
|
|
|
2025-07-19 23:35:33 -03:00
|
|
|
WEB_API void initialize_main_thread_vm(AgentType);
|
|
|
|
|
WEB_API JS::VM& main_thread_vm();
|
2023-03-17 11:56:59 -03:00
|
|
|
|
2023-02-25 14:44:51 -03:00
|
|
|
void queue_mutation_observer_microtask(DOM::Document const&);
|
2025-07-19 23:35:33 -03:00
|
|
|
WEB_API NonnullOwnPtr<JS::ExecutionContext> create_a_new_javascript_realm(JS::VM&, Function<JS::Object*(JS::Realm&)> create_global_object, Function<JS::Object*(JS::Realm&)> create_global_this_value);
|
|
|
|
|
WEB_API void invoke_custom_element_reactions(Vector<GC::Root<DOM::Element>>& element_queue);
|
2021-02-03 06:41:07 -03:00
|
|
|
|
|
|
|
|
}
|