mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
LibGC+Everywhere: Factor out a LibGC from LibJS
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
This commit is contained in:
committed by
Andreas Kling
parent
ce23efc5f6
commit
f87041bf3a
@@ -15,7 +15,7 @@
|
||||
|
||||
namespace Web::DOM {
|
||||
|
||||
JS_DEFINE_ALLOCATOR(ShadowRoot);
|
||||
GC_DEFINE_ALLOCATOR(ShadowRoot);
|
||||
|
||||
ShadowRoot::ShadowRoot(Document& document, Element& host, Bindings::ShadowRootMode mode)
|
||||
: DocumentFragment(document)
|
||||
@@ -138,7 +138,7 @@ void ShadowRoot::visit_edges(Visitor& visitor)
|
||||
visitor.visit(m_adopted_style_sheets);
|
||||
}
|
||||
|
||||
JS::NonnullGCPtr<WebIDL::ObservableArray> ShadowRoot::adopted_style_sheets() const
|
||||
GC::Ref<WebIDL::ObservableArray> ShadowRoot::adopted_style_sheets() const
|
||||
{
|
||||
if (!m_adopted_style_sheets)
|
||||
m_adopted_style_sheets = create_adopted_style_sheets_list(const_cast<Document&>(document()));
|
||||
@@ -174,9 +174,9 @@ void ShadowRoot::for_each_css_style_sheet(Function<void(CSS::CSSStyleSheet&)>&&
|
||||
}
|
||||
}
|
||||
|
||||
WebIDL::ExceptionOr<Vector<JS::NonnullGCPtr<Animations::Animation>>> ShadowRoot::get_animations()
|
||||
WebIDL::ExceptionOr<Vector<GC::Ref<Animations::Animation>>> ShadowRoot::get_animations()
|
||||
{
|
||||
Vector<JS::NonnullGCPtr<Animations::Animation>> relevant_animations;
|
||||
Vector<GC::Ref<Animations::Animation>> relevant_animations;
|
||||
TRY(for_each_child_of_type_fallible<Element>([&](auto& child) -> WebIDL::ExceptionOr<IterationDecision> {
|
||||
relevant_animations.extend(TRY(child.get_animations(Animations::GetAnimationsOptions { .subtree = true })));
|
||||
return IterationDecision::Continue;
|
||||
|
||||
Reference in New Issue
Block a user