WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
202924
[GTK][WPE] WebKitWebContext should identify web views by their WebPageProxy identifier
https://bugs.webkit.org/show_bug.cgi?id=202924
Summary
[GTK][WPE] WebKitWebContext should identify web views by their WebPageProxy i...
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+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Carlos Garcia Campos
Comment 1
2019-10-14 05:17:28 PDT
Created
attachment 380877
[details]
Patch
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
Committed
r251127
: <
https://trac.webkit.org/changeset/251127
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug