mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
AK+Userland: Remove NOESCAPE
See the next commit for an explanation
This commit is contained in:
committed by
Andrew Kaster
parent
d2b3007248
commit
a5f4c9a632
@@ -35,8 +35,8 @@ public:
|
||||
return m_tasks.take_first();
|
||||
}
|
||||
|
||||
void remove_tasks_matching(NOESCAPE Function<bool(HTML::Task const&)>);
|
||||
JS::MarkedVector<JS::NonnullGCPtr<Task>> take_tasks_matching(NOESCAPE Function<bool(HTML::Task const&)>);
|
||||
void remove_tasks_matching(Function<bool(HTML::Task const&)>);
|
||||
JS::MarkedVector<JS::NonnullGCPtr<Task>> take_tasks_matching(Function<bool(HTML::Task const&)>);
|
||||
|
||||
Task const* last_added_task() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user