RESOLVED FIXED 110190
[GTK] Move the API to get TLS certificate from WebKitURIResponse to WebKitWebView
https://bugs.webkit.org/show_bug.cgi?id=110190
Summary [GTK] Move the API to get TLS certificate from WebKitURIResponse to WebKitWeb...
Carlos Garcia Campos
Reported 2013-02-19 01:15:42 PST
Current API is problematic, and having the method directly in the web view makes the API more convenient to use.
Attachments
Patch (11.13 KB, patch)
2013-02-19 01:19 PST, Carlos Garcia Campos
andersca: review+
Carlos Garcia Campos
Comment 1 2013-02-19 01:19:31 PST
WebKit Review Bot
Comment 2 2013-02-19 01:22: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 http://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Gustavo Noronha (kov)
Comment 3 2013-02-19 04:48:22 PST
Comment on attachment 189019 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=189019&action=review > Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:2907 > + * from the server, or %FALSE otherwise. I believe you can drop this 'or', it's made redundant by 'otherwise'.
Carlos Garcia Campos
Comment 4 2013-02-19 05:12:54 PST
(In reply to comment #3) > (From update of attachment 189019 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=189019&action=review Thanks for the review, but remember this has to be r+'ed by an owner. > > Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:2907 > > + * from the server, or %FALSE otherwise. > > I believe you can drop this 'or', it's made redundant by 'otherwise'. I think martin insisted in adding that 'or', but I'm not sure, I'm not English expert :-P
Gustavo Noronha (kov)
Comment 5 2013-02-19 08:20:52 PST
Comment on attachment 189019 [details] Patch I just remembered/realized this needs to be looked at by an OWNER, but it looks good to me from a purely GTK+ perspective.
Martin Robinson
Comment 6 2013-02-19 08:23:06 PST
Comment on attachment 189019 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=189019&action=review Looks good to me as well. This will need an owner's review. > Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:2896 > + * @certificate: (out) (transfer none): return location for a #GTlsCertificate > + * @errors: (out): return location for a #GTlsCertificateFlags the verification status of @certificate Is there an equivalent to "allow none" for out parameters or is it just assumed? >>> Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:2907 >>> + * from the server, or %FALSE otherwise. >> >> I believe you can drop this 'or', it's made redundant by 'otherwise'. > > I think martin insisted in adding that 'or', but I'm not sure, I'm not English expert :-P I think the 'or' is fine. > Source/WebKit2/UIProcess/API/gtk/tests/TestSSL.cpp:51 > GTlsCertificate* certificate = 0; > - webkit_uri_response_get_https_status(response, &certificate, &m_tlsErrors); > + webkit_web_view_get_tls_info(m_webView, &certificate, &m_tlsErrors); > m_certificate = certificate; Why not just use &m_certificate here?
Carlos Garcia Campos
Comment 7 2013-02-19 08:27:17 PST
(In reply to comment #6) > (From update of attachment 189019 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=189019&action=review > > Looks good to me as well. This will need an owner's review. > > > Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:2896 > > + * @certificate: (out) (transfer none): return location for a #GTlsCertificate > > + * @errors: (out): return location for a #GTlsCertificateFlags the verification status of @certificate > > Is there an equivalent to "allow none" for out parameters or is it just assumed? It's assumed. > >>> Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:2907 > >>> + * from the server, or %FALSE otherwise. > >> > >> I believe you can drop this 'or', it's made redundant by 'otherwise'. > > > > I think martin insisted in adding that 'or', but I'm not sure, I'm not English expert :-P > > I think the 'or' is fine. > > > Source/WebKit2/UIProcess/API/gtk/tests/TestSSL.cpp:51 > > GTlsCertificate* certificate = 0; > > - webkit_uri_response_get_https_status(response, &certificate, &m_tlsErrors); > > + webkit_web_view_get_tls_info(m_webView, &certificate, &m_tlsErrors); > > m_certificate = certificate; > > Why not just use &m_certificate here? Is that possible with a GRefPtr?
Martin Robinson
Comment 8 2013-02-19 08:31:15 PST
Comment on attachment 189019 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=189019&action=review >> Source/WebKit2/UIProcess/API/gtk/tests/TestSSL.cpp:51 >> m_certificate = certificate; > > Why not just use &m_certificate here? Ah! Nope. Only with GOwnPtr currently.
Carlos Garcia Campos
Comment 9 2013-02-19 08:52:32 PST
Note You need to log in before you can comment on or make changes to this bug.