Skip to content

Commit

Permalink
Correct Open Source WebKit build when using Sonoma SDK
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=261832
<rdar://problem/115795086>

Unreviewed build fix.

The changes in 258467@main defined a needed property for NSMutableURLRequest, but did not
provide the related declaration for NSURLRequest. This causes a build failure when someone
attempts to build trunk WebKit with the Open Source Sonoma SDK.

* Source/WebCore/PAL/pal/spi/cf/CFNetworkSPI.h:

Canonical link: https://commits.webkit.org/268214@main
  • Loading branch information
brentfulgham authored and Brent Fulgham committed Sep 20, 2023
1 parent c12cd61 commit 0d5ad83
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/WebCore/PAL/pal/spi/cf/CFNetworkSPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ typedef enum {
@property (setter=_setPrivacyProxyFailClosed:) BOOL _privacyProxyFailClosed;
@property (readonly) BOOL _useEnhancedPrivacyMode;
#endif
#if HAVE(PRIVACY_PROXY_FAIL_CLOSED_FOR_UNREACHABLE_HOSTS)
@property (readonly) BOOL _privacyProxyFailClosedForUnreachableNonMainHosts;
#endif
@end

@interface NSURLResponse ()
Expand Down

0 comments on commit 0d5ad83

Please sign in to comment.