RESOLVED FIXED215349
Clean up DragApplicationFlags after switch to OptionSet<>
https://bugs.webkit.org/show_bug.cgi?id=215349
Summary Clean up DragApplicationFlags after switch to OptionSet<>
David Kilzer (:ddkilzer)
Reported 2020-08-10 16:54:17 PDT
Bug 215341 fixed a WebContent crash, but there are a couple things to clean up: 1. DragApplicationFlags::DragApplicationNone can be removed. 2. DragApplicationFlags should be an enum class so DragApplicationFlags::DragApplicationIsModal becomes DragApplicationFlags::IsModal. 3. -[WebView applicationFlags:] should return an OptionSet<WebCore::DragApplicationFlags>. (Fix call sites that use it.) 4. Source/WebKit/UIProcess/API/gtk/DropTargetGtk3.cpp should use OptionSet<WebCore::DragApplicationFlags> within the function.
Attachments
Patch v1 (13.27 KB, patch)
2020-08-14 18:36 PDT, David Kilzer (:ddkilzer)
no flags
Patch v2 (14.02 KB, patch)
2020-08-15 08:14 PDT, David Kilzer (:ddkilzer)
no flags
David Kilzer (:ddkilzer)
Comment 1 2020-08-10 16:56:41 PDT
(In reply to David Kilzer (:ddkilzer) from comment #0) > Bug 215341 fixed a WebContent crash, but there are a couple things to clean > up: > > 1. DragApplicationFlags::DragApplicationNone can be removed. Chris already fixed this in Bug 215341.
David Kilzer (:ddkilzer)
Comment 2 2020-08-14 18:36:24 PDT
Created attachment 406644 [details] Patch v1
EWS Watchlist
Comment 3 2020-08-14 18:37:18 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
David Kilzer (:ddkilzer)
Comment 4 2020-08-15 08:14:06 PDT
Created attachment 406667 [details] Patch v2
Darin Adler
Comment 5 2020-08-15 12:27:22 PDT
Comment on attachment 406667 [details] Patch v2 View in context: https://bugs.webkit.org/attachment.cgi?id=406667&action=review Seems like a GTK test related to the patch failed. I pushed the retry button so it would try again. > Source/WebCore/platform/DragData.h:61 > +enum class DragApplicationFlags : uint8_t { The enum represents a single flag. Doesn’t make sense to call it "flags". An OptionSet, of course, contains multiple flags. So this should be renamed DragApplicationFlag, singular.
David Kilzer (:ddkilzer)
Comment 6 2020-08-17 09:26:49 PDT
Comment on attachment 406667 [details] Patch v2 View in context: https://bugs.webkit.org/attachment.cgi?id=406667&action=review >> Source/WebCore/platform/DragData.h:61 >> +enum class DragApplicationFlags : uint8_t { > > The enum represents a single flag. Doesn’t make sense to call it "flags". An OptionSet, of course, contains multiple flags. So this should be renamed DragApplicationFlag, singular. I'm assuming this can be done in a separate patch.
EWS
Comment 7 2020-08-17 09:33:59 PDT
Committed r265756: <https://trac.webkit.org/changeset/265756> All reviewed patches have been landed. Closing bug and clearing flags on attachment 406667 [details].
Radar WebKit Bug Importer
Comment 8 2020-08-17 09:34:26 PDT
Note You need to log in before you can comment on or make changes to this bug.