RESOLVED FIXED 171809
Reduce PassRefPtr use
https://bugs.webkit.org/show_bug.cgi?id=171809
Summary Reduce PassRefPtr use
Alex Christensen
Reported 2017-05-08 09:54:41 PDT
Reduce PassRefPtr use
Attachments
Patch (42.78 KB, patch)
2017-05-08 09:55 PDT, Alex Christensen
no flags
Patch (47.76 KB, patch)
2017-05-08 10:07 PDT, Alex Christensen
no flags
Patch (48.46 KB, patch)
2017-05-08 10:42 PDT, Alex Christensen
no flags
Patch (48.38 KB, patch)
2017-05-08 11:30 PDT, Alex Christensen
no flags
Patch (48.20 KB, patch)
2017-05-08 11:31 PDT, Alex Christensen
no flags
Patch (47.94 KB, patch)
2017-05-08 12:11 PDT, Alex Christensen
no flags
Alex Christensen
Comment 1 2017-05-08 09:55:16 PDT
Build Bot
Comment 2 2017-05-08 09:57:00 PDT
Attachment 309368 [details] did not pass style-queue: ERROR: Source/WebCore/ChangeLog:8: You should remove the 'No new tests' and either add and list tests, or explain why no new tests were possible. [changelog/nonewtests] [5] Total errors found: 1 in 29 files If any of these errors are false positives, please file a bug against check-webkit-style.
Chris Dumez
Comment 3 2017-05-08 10:06:29 PDT
Comment on attachment 309368 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309368&action=review r=me with comments, please make sure all bots are happy. > Source/WebCore/platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:355 > + AVPlayerLayer *destinationPlayerLayer = static_cast<PlatformCALayerCocoa&>(newLayer.get()).avPlayerLayer(); Should be a downcast. > Source/WebKit2/WebProcess/WebPage/VisitedLinkTableController.cpp:54 > visitedLinkTableControllerPtr = visitedLinkTableController.ptr(); This line seems useless? > Source/WebKit2/WebProcess/WebPage/WebOpenPanelResultListener.h:57 > RefPtr<WebCore::FileChooser> m_fileChooser; Should be a Ref<>.
Alex Christensen
Comment 4 2017-05-08 10:07:54 PDT
Chris Dumez
Comment 5 2017-05-08 10:09:07 PDT
Comment on attachment 309371 [details] Patch Same comments as before.
Alex Christensen
Comment 6 2017-05-08 10:41:55 PDT
(In reply to Chris Dumez from comment #3) > > Source/WebCore/platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:355 > > + AVPlayerLayer *destinationPlayerLayer = static_cast<PlatformCALayerCocoa&>(newLayer.get()).avPlayerLayer(); > > Should be a downcast. That doesn't compile. > > > Source/WebKit2/WebProcess/WebPage/VisitedLinkTableController.cpp:54 > > visitedLinkTableControllerPtr = visitedLinkTableController.ptr(); > > This line seems useless? It's needed in this case to set the pointer in the HashMap. Weird. We can't use ensure here, though, because the HashMap values are raw pointers, and we need to return a Ref here.
Alex Christensen
Comment 7 2017-05-08 10:42:24 PDT
Alex Christensen
Comment 8 2017-05-08 11:30:19 PDT
Alex Christensen
Comment 9 2017-05-08 11:31:38 PDT
Alex Christensen
Comment 10 2017-05-08 12:11:58 PDT
Alex Christensen
Comment 11 2017-05-08 13:12:08 PDT
Note You need to log in before you can comment on or make changes to this bug.