[webkit-reviews] review denied: [Bug 230736] WebKitLegacy's module map files don't get installed : [Attachment 439122] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 1 12:25:53 PDT 2021


David Kilzer (:ddkilzer) <ddkilzer at webkit.org> has denied Ian Anderson
<iana at apple.com>'s request for review:
Bug 230736: WebKitLegacy's module map files don't get installed
https://bugs.webkit.org/show_bug.cgi?id=230736

Attachment 439122: Patch

https://bugs.webkit.org/attachment.cgi?id=439122&action=review




--- Comment #6 from David Kilzer (:ddkilzer) <ddkilzer at webkit.org> ---
Comment on attachment 439122
  --> https://bugs.webkit.org/attachment.cgi?id=439122
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=439122&action=review

r-, but just don't revert the two `#if defined(...) & ...` changes.

>> Source/WebKitLegacy/ios/WebView/WebUIKitDelegate.h:133
>> +#if ENABLE_ORIENTATION_EVENTS
> 
> Should be ENABLE(ORIENTATION_EVENTS)

Actually, we can't use ENABLE(ORIENTATION_EVENTS) here because this is a public
or private header, and we can't assume the ENABLE() macro is defined here when
this is included outside of a WebKit build.

We should NOT revert this change, or the other one like it below.

>> Source/WebKitLegacy/mac/WebView/WebHTMLViewPrivate.h:116
>> +#if ENABLE_NETSCAPE_PLUGIN_API
> 
> Should be ENABLE(NETSCAPE_PLUGIN_API)

Actually, we can't use ENABLE(NETSCAPE_PLUGIN_API) here because this is a
public or private header, and we can't assume the ENABLE() macro is defined
here when this is included outside of a WebKit build.

We should NOT revert this change, or the other one like it above.


More information about the webkit-reviews mailing list