Optimization a few call sites creating SharedBuffer objects.
Created attachment 430640 [details] Patch
Comment on attachment 430640 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=430640&action=review > Source/WebCore/inspector/agents/InspectorNetworkAgent.cpp:-1249 > - overrideData = SharedBuffer::create(content.utf8().data(), content.utf8().length()); Wow, we should grep for this mistake, even when it doesn’t involve SharedBuffer. > Source/WebKit/WebProcess/WebPage/WebPage.cpp:1651 > + auto sharedBuffer = SharedBuffer::create(data.data(), data.size()); Seems a little sad that we copy in all these IPC cases. But I guess getting lifetime right would be tricky if we used more of a data view instead of a copy.
Committed r278523 (238522@main): <https://commits.webkit.org/238522@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 430640 [details].
<rdar://problem/78899496>