RESOLVED FIXED Bug 194216
[WPE] Do not use a sync IPC message to send the host FD to the web process
https://bugs.webkit.org/show_bug.cgi?id=194216
Summary [WPE] Do not use a sync IPC message to send the host FD to the web process
Carlos Garcia Campos
Reported 2019-02-04 03:01:05 PST
It can be sent as a web page creation parameter instead.
Attachments
Patch (23.75 KB, patch)
2019-02-04 03:03 PST, Carlos Garcia Campos
darin: review+
Patch for landing (23.95 KB, patch)
2019-02-10 23:05 PST, Carlos Garcia Campos
no flags
Carlos Garcia Campos
Comment 1 2019-02-04 03:03:31 PST
Darin Adler
Comment 2 2019-02-10 16:48:45 PST
Comment on attachment 361049 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=361049&action=review Not thrilled with the use of "FD" in the patch. > Source/WebKit/UIProcess/API/wpe/PageClientImpl.h:146 > + IPC::Attachment hostFD(); This should say "override" or "final"; applies even though the underlying function is a pure virtual. My preference is final, but it seems we have a mix in this file. > Source/WebKit/UIProcess/API/wpe/WPEView.h:57 > + virtual ~View() = default; I suggest we consider just deleting this line entirely, because this is what happens if we don’t declare the destructor at all, and I think it’s elegant to just let that happen. OK this way too, though. > Source/WebKit/UIProcess/PageClient.h:488 > +#if PLATFORM(WPE) > + virtual IPC::Attachment hostFD() = 0; > +#endif This is a messy pattern, but I suppose it’s what we are using for lots of other things above, so it’s not great for me to complain just about this one.
Carlos Garcia Campos
Comment 3 2019-02-10 23:05:44 PST
Created attachment 361660 [details] Patch for landing
Carlos Garcia Campos
Comment 4 2019-02-11 00:12:11 PST
Note You need to log in before you can comment on or make changes to this bug.