RESOLVED FIXED234455
Convert ProtectionSpace enums into enum classes
https://bugs.webkit.org/show_bug.cgi?id=234455
Summary Convert ProtectionSpace enums into enum classes
Chris Dumez
Reported 2021-12-17 16:40:20 PST
Convert ProtectionSpace enums into enum classes.
Attachments
Patch (92.31 KB, patch)
2021-12-17 16:43 PST, Chris Dumez
ews-feeder: commit-queue-
Patch (92.65 KB, patch)
2021-12-17 16:52 PST, Chris Dumez
ews-feeder: commit-queue-
Patch (94.30 KB, patch)
2021-12-17 18:25 PST, Chris Dumez
ews-feeder: commit-queue-
Patch (94.30 KB, patch)
2021-12-17 18:54 PST, Chris Dumez
no flags
Chris Dumez
Comment 1 2021-12-17 16:43:00 PST
EWS Watchlist
Comment 2 2021-12-17 16:43:45 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
Chris Dumez
Comment 3 2021-12-17 16:52:15 PST
Chris Dumez
Comment 4 2021-12-17 18:25:46 PST
Chris Dumez
Comment 5 2021-12-17 18:54:11 PST
EWS
Comment 6 2021-12-18 09:47:31 PST
Committed r287224 (245387@main): <https://commits.webkit.org/245387@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 447501 [details].
Radar WebKit Bug Importer
Comment 7 2021-12-18 09:48:19 PST
Darin Adler
Comment 8 2021-12-19 15:54:58 PST
Comment on attachment 447501 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=447501&action=review > Source/WebCore/platform/network/ProtectionSpaceBase.h:45 > + HTTP = 1, > + HTTPS = 2, > + FTP = 3, > + FTPS = 4, > + ProxyHTTP = 5, > + ProxyHTTPS = 6, > + ProxyFTP = 7, > + ProxySOCKS = 8 Is there a reason we need to apply specific numbers here instead of letting the enumeration select consecutive numbers? Some reason to avoid 0? > Source/WebCore/platform/network/ProtectionSpaceBase.h:61 > + Default = 1, > + HTTPBasic = 2, > + HTTPDigest = 3, > + HTMLForm = 4, > + NTLM = 5, > + Negotiate = 6, > + ClientCertificateRequested = 7, > + ServerTrustEvaluationRequested = 8, > + OAuth = 9, > +#if USE(GLIB) > + ClientCertificatePINRequested = 10, > +#endif > + Unknown = 100 Same question.
Note You need to log in before you can comment on or make changes to this bug.