Bug 202924

Summary: [GTK][WPE] WebKitWebContext should identify web views by their WebPageProxy identifier
Product: WebKit Reporter: Carlos Garcia Campos <cgarcia>
Component: WebKitGTKAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: aperez, berto, bugs-noreply, ews-watchlist, gustavo
Priority: P2 Keywords: Gtk
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch aperez: review+

Carlos Garcia Campos
Reported 2019-10-14 05:15:57 PDT
Instead of the WebPage identifier.
Attachments
Patch (1.94 KB, patch)
2019-10-14 05:17 PDT, Carlos Garcia Campos
aperez: review+
Carlos Garcia Campos
Comment 1 2019-10-14 05:17:28 PDT
EWS Watchlist
Comment 2 2019-10-14 05:18:23 PDT
Thanks for the patch. If this patch contains new public API please make sure it follows the guidelines for new WebKit2 GTK+ API. See http://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Adrian Perez
Comment 3 2019-10-15 00:38:47 PDT
Comment on attachment 380877 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=380877&action=review I just have a comment suggesting a small improvement to the code that touches the “webViews” map, which could as well be a follow-up. Otherwise r=me :) > Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp:1807 > + context->priv->webViews.set(page.identifier().toUInt64(), webView); Instead of having the explicit .toUInt64() conversions where the “webViews” is used, the map could be declared as: HashMap<WebPageProxyIdentifier, WebKitWebView*> webViews; This would make explicit in the data type that the mapping is from page proxy identifiers to web views, and the compiler would help a little bit doing type checks. There will be still a couple of (unavoidable) casts when crossing the public API boundaries, but I think it would make the code a bit more robust. Could be a follow-up patch :)
Carlos Garcia Campos
Comment 4 2019-10-15 02:11:45 PDT
Note You need to log in before you can comment on or make changes to this bug.