mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 15:49:11 +00:00
WebContent: Ignore GC for page client member of BackingStoreManager
This is very non-ideal, but the use of a reference for this member is technically ok in its current usage as a member of the PageClient itself.
This commit is contained in:
parent
b73bd76571
commit
cdffc4238a
Notes:
github-actions[bot]
2024-07-26 00:37:02 +00:00
Author: https://github.com/ADKaster
Commit: cdffc4238a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/837
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ public:
|
||||||
BackingStoreManager(PageClient&);
|
BackingStoreManager(PageClient&);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
PageClient& m_page_client;
|
// FIXME: We should come up with an ownership model for this class that makes the GC-checker happy
|
||||||
|
IGNORE_GC PageClient& m_page_client;
|
||||||
|
|
||||||
i32 m_front_bitmap_id { -1 };
|
i32 m_front_bitmap_id { -1 };
|
||||||
i32 m_back_bitmap_id { -1 };
|
i32 m_back_bitmap_id { -1 };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue