mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 07:33:20 +00:00
LibWeb: Use GC::Ptr for BrowsingContext pointer saved in Document
Likely we forgot to update `WeakPtr` to `GC::Ptr` after converting `BrowsingContext` to GC-allocated object.
This commit is contained in:
parent
59a867d3e3
commit
1bf4d3391e
Notes:
github-actions[bot]
2025-07-17 14:56:57 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 1bf4d3391e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5489
Reviewed-by: https://github.com/AtkinsSJ ✅
5 changed files with 9 additions and 9 deletions
|
@ -308,10 +308,10 @@ public:
|
|||
String title() const;
|
||||
WebIDL::ExceptionOr<void> set_title(String const&);
|
||||
|
||||
HTML::BrowsingContext* browsing_context() { return m_browsing_context.ptr(); }
|
||||
HTML::BrowsingContext const* browsing_context() const { return m_browsing_context.ptr(); }
|
||||
GC::Ptr<HTML::BrowsingContext> browsing_context() { return m_browsing_context; }
|
||||
GC::Ptr<HTML::BrowsingContext const> browsing_context() const { return m_browsing_context; }
|
||||
|
||||
void set_browsing_context(HTML::BrowsingContext*);
|
||||
void set_browsing_context(GC::Ptr<HTML::BrowsingContext>);
|
||||
|
||||
Page& page();
|
||||
Page const& page() const;
|
||||
|
@ -960,7 +960,7 @@ private:
|
|||
OwnPtr<CSS::StyleComputer> m_style_computer;
|
||||
GC::Ptr<CSS::StyleSheetList> m_style_sheets;
|
||||
GC::Ptr<Node> m_active_favicon;
|
||||
WeakPtr<HTML::BrowsingContext> m_browsing_context;
|
||||
GC::Ptr<HTML::BrowsingContext> m_browsing_context;
|
||||
URL::URL m_url;
|
||||
mutable OwnPtr<ElementByIdMap> m_element_by_id;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue