mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:17:45 +00:00
Everywhere: Stop using NonnullRefPtrVector
This class had slightly confusing semantics and the added weirdness doesn't seem worth it just so we can say "." instead of "->" when iterating over a vector of NNRPs. This patch replaces NonnullRefPtrVector<T> with Vector<NNRP<T>>.
This commit is contained in:
parent
104be6c8ac
commit
8a48246ed1
168 changed files with 1280 additions and 1280 deletions
|
@ -183,9 +183,9 @@ private:
|
|||
AnimationFrameCallbackDriver m_animation_frame_callback_driver;
|
||||
|
||||
// https://w3c.github.io/requestidlecallback/#dfn-list-of-idle-request-callbacks
|
||||
NonnullRefPtrVector<IdleCallback> m_idle_request_callbacks;
|
||||
Vector<NonnullRefPtr<IdleCallback>> m_idle_request_callbacks;
|
||||
// https://w3c.github.io/requestidlecallback/#dfn-list-of-runnable-idle-callbacks
|
||||
NonnullRefPtrVector<IdleCallback> m_runnable_idle_callbacks;
|
||||
Vector<NonnullRefPtr<IdleCallback>> m_runnable_idle_callbacks;
|
||||
// https://w3c.github.io/requestidlecallback/#dfn-idle-callback-identifier
|
||||
u32 m_idle_callback_identifier = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue