RESOLVED WONTFIX 125367
Add missing ENABLE(DRAG_SUPPORT) guards for DragClient and clients
https://bugs.webkit.org/show_bug.cgi?id=125367
Summary Add missing ENABLE(DRAG_SUPPORT) guards for DragClient and clients
Brian Burg
Reported 2013-12-06 14:25:25 PST
Continuing on our theme... These guards are done differently in every port for no reason. They should be done the same way everywhere so it's blindingly obvious what drag support implies.
Attachments
patch (18.79 KB, patch)
2013-12-08 12:52 PST, Brian Burg
no flags
patch (18.79 KB, patch)
2013-12-08 13:40 PST, Brian Burg
no flags
patch (2.56 KB, patch)
2013-12-10 18:37 PST, Brian Burg
darin: review+
Brian Burg
Comment 1 2013-12-08 12:52:38 PST
EFL EWS Bot
Comment 2 2013-12-08 13:02:26 PST
Brian Burg
Comment 3 2013-12-08 13:40:43 PST
Darin Adler
Comment 4 2013-12-09 08:25:26 PST
Comment on attachment 218712 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=218712&action=review The cross-platform changes here are good; it’s a small refinement that costs very little to cut out even more of the drag code for platforms that have it turned off. But the platform-specific part of this patch is overkill. It’s a mistake to add ENABLE(DRAG_SUPPORT) conditionals for every platform. Most platforms compile only with drag support enabled or only with drag support disabled. We don’t need each platform to support both conditions. Unfortunately I don’t know the status of the not-Apple-driven ports such as GTK, EFL, and WinCE. > Source/WebCore/page/Page.cpp:1563 > , dragClient(0) Should be nullptr instead of 0. > Source/WebKit/win/WebCoreSupport/WebDragClient.h:31 > +#if ENABLE(DRAG_SUPPORT) No need to do this. Windows should always be compiled with DRAG_SUPPORT enabled. > Source/WebKit/win/WebView.cpp:2770 > +#if ENABLE(DRAG_SUPPORT) No need to do this. Windows should always be compiled with DRAG_SUPPORT enabled. > Source/WebKit2/WebProcess/WebPage/WebPage.cpp:191 > +#if ENABLE(DRAG_SUPPORT) > +#include "WebDragClient.h" > +#include <WebCore/DragController.h> > +#include <WebCore/DragData.h> > +#include <WebCore/DragSession.h> > +#endif This change isn’t needed. These headers themselves are already properly conditionalized and there is no harm in including them unconditionally.
Brian Burg
Comment 5 2013-12-10 17:50:32 PST
(In reply to comment #4) > (From update of attachment 218712 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=218712&action=review > > The cross-platform changes here are good; it’s a small refinement that costs very little to cut out even more of the drag code for platforms that have it turned off. > > But the platform-specific part of this patch is overkill. OK, noted. I'll fix the other patches to heed this too.
Brian Burg
Comment 6 2013-12-10 18:37:15 PST
Blaze Burg
Comment 7 2017-02-10 17:34:31 PST
Not needed.
Note You need to log in before you can comment on or make changes to this bug.