Bug 218599

Summary: Store WeakPtr<Frame> instead of Frame*
Product: WebKit Reporter: Alex Christensen <achristensen>
Component: New BugsAssignee: Alex Christensen <achristensen>
Status: RESOLVED FIXED    
Severity: Normal CC: berto, cdumez, cgarcia, changseok, esprehn+autocc, ews-watchlist, glenn, gustavo, gyuyoung.kim, hi, japhet, joepeck, kangil.han, kondapallykalyan, pdr, tsavell, webkit-bug-importer, youennf
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
See Also: https://bugs.webkit.org/show_bug.cgi?id=218662
https://bugs.webkit.org/show_bug.cgi?id=223838
Attachments:
Description Flags
Patch
none
Patch youennf: review+, ews-feeder: commit-queue-

Description Alex Christensen 2020-11-04 20:31:00 PST
Store WeakPtr<Frame> instead of Frame*
Comment 1 Alex Christensen 2020-11-04 20:31:55 PST
Created attachment 413244 [details]
Patch
Comment 2 Alex Christensen 2020-11-04 21:03:53 PST
Created attachment 413247 [details]
Patch
Comment 3 EWS Watchlist 2020-11-04 21:05:03 PST
Thanks for the patch. If this patch contains new public API please make sure it follows the guidelines for new WebKit2 GTK+ API. See https://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Comment 4 youenn fablet 2020-11-05 08:11:29 PST
Comment on attachment 413247 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=413247&action=review

> Source/WebCore/bindings/js/WindowProxy.h:53
> +    WEBCORE_EXPORT AbstractFrame* frame() const;

Why not keeping it inline?
Comment 5 Alex Christensen 2020-11-05 08:34:23 PST
Comment on attachment 413247 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=413247&action=review

>> Source/WebCore/bindings/js/WindowProxy.h:53
>> +    WEBCORE_EXPORT AbstractFrame* frame() const;
> 
> Why not keeping it inline?

That would require including AbstractFrame.h to build successfully.
Comment 6 EWS 2020-11-05 08:46:34 PST
Tools/Scripts/svn-apply failed to apply attachment 413247 [details] to trunk.
Please resolve the conflicts and upload a new patch.
Comment 7 Alex Christensen 2020-11-05 08:55:03 PST
http://trac.webkit.org/r269435
Comment 8 Radar WebKit Bug Importer 2020-11-05 08:56:20 PST
<rdar://problem/71079886>
Comment 9 Truitt Savell 2020-11-05 09:15:12 PST
It looks like the changes in https://trac.webkit.org/changeset/269435/webkit

broke Mac builds builds:
https://build.webkit.org/builders/Apple-BigSur-Release-Build/builds/2839

./loader/FrameLoader.cpp:389:12: error: no viable conversion from returned value of type 'WeakPtr<WebCore::Frame>' to function return type 'WebCore::Frame *'
./loader/FrameLoader.cpp:394:12: error: no viable conversion from returned value of type 'const WeakPtr<WebCore::Frame>' to function return type 'const WebCore::Frame *'
Comment 10 Alex Christensen 2020-11-05 09:20:52 PST
https://trac.webkit.org/changeset/269439/webkit