Summary: | Replace copyKeysToVector/copyValuesToVector with copyToVector(map.keys())/copyToVector(map.values()) | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Sam Weinig <sam> | ||||||||||||
Component: | New Bugs | Assignee: | Sam Weinig <sam> | ||||||||||||
Status: | RESOLVED FIXED | ||||||||||||||
Severity: | Normal | CC: | cdumez, commit-queue, darin, thorton, webkit-bug-importer | ||||||||||||
Priority: | P2 | Keywords: | InRadar | ||||||||||||
Version: | WebKit Nightly Build | ||||||||||||||
Hardware: | Unspecified | ||||||||||||||
OS: | Unspecified | ||||||||||||||
Bug Depends on: | 181771 | ||||||||||||||
Bug Blocks: | 181863 | ||||||||||||||
Attachments: |
|
Description
Sam Weinig
2017-10-09 17:09:23 PDT
Created attachment 323249 [details]
Patch
Created attachment 323251 [details]
Patch
Created attachment 323273 [details]
Patch
Created attachment 323277 [details]
Patch
Created attachment 323309 [details]
Patch
Comment on attachment 323309 [details] Patch Clearing flags on attachment: 323309 Committed r223149: <http://trac.webkit.org/changeset/223149> All reviewed patches have been landed. Closing bug. Comment on attachment 323309 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=323309&action=review > Source/WebKit/UIProcess/WebProcessProxy.cpp:625 > + auto pages = copyToVector(m_pageMap.values()); This used to ref the pages and now it no longer does (rdar://problem/36566237). |