RemoteVideoFrameObjectHeap should process its IPC messages in a background thread
Created attachment 453196 [details] Patch
Comment on attachment 453196 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=453196&action=review > Source/WebKit/GPUProcess/media/RemoteVideoFrameObjectHeap.cpp:47 > + static auto& queue = WorkQueue::create("org.webkit.RemoteVideoFrameObjectHeap", WorkQueue::QOS::UserInteractive).leakRef(); > + return queue; In newer code we’ve been using NeverDestroyed rather than leakRef for cases like this. More like this: static NeverDestroyed queue = WorkQueue::create("org.webkit.RemoteVideoFrameObjectHeap", WorkQueue::QOS::UserInteractive; return queue; Should be the same generated code.
Created attachment 453343 [details] Patch for landing
Created attachment 453369 [details] Patch for landing
Committed r290591 (247869@main): <https://commits.webkit.org/247869@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 453369 [details].
<rdar://problem/89548682>